This commit is contained in:
2017-04-29 00:44:23 +02:00
parent 3934a3a0da
commit 2de09cc7b9
17 changed files with 821 additions and 1 deletions

10
test/test.ts Normal file
View File

@ -0,0 +1,10 @@
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)
})