2018-09-19 22:47:15 +00:00
|
|
|
import { tap, expect } from '@pushrocks/tapbundle';
|
|
|
|
|
|
|
|
import * as smartsass from '../ts/index';
|
|
|
|
|
|
|
|
tap.test('should create a valid instance of smartsass', async () => {
|
|
|
|
const testsmartSass = new smartsass.Smartsass({
|
|
|
|
data: 'hello'
|
2018-11-28 10:04:26 +00:00
|
|
|
});
|
2018-09-19 22:47:15 +00:00
|
|
|
expect(testsmartSass).to.be.instanceof(smartsass.Smartsass);
|
|
|
|
});
|
|
|
|
|
|
|
|
tap.start();
|