smartscaf/test/test.ts

11 lines
315 B
TypeScript
Raw Normal View History

2017-04-28 22:44:23 +00:00
import { expect, tap } from 'tapbundle'
import * as smartscaf from '../dist/index'
let testScafTemplate: smartscaf.ScafTemplate
tap.test('should create new Smartscaf instance', async () => {
testScafTemplate = new smartscaf.ScafTemplate()
expect(testScafTemplate).to.be.instanceof(smartscaf.ScafTemplate)
})