first working version

This commit is contained in:
2017-08-17 16:15:47 +02:00
parent b955948380
commit ea6fc17f21
15 changed files with 628 additions and 11 deletions

10
test/test.ts Normal file
View File

@ -0,0 +1,10 @@
import { expect, tap } from 'tapbundle'
import * as smartversion from '../ts/index'
let localSmartVersion: smartversion.SmartVersion
tap.test('should create a valid SmartVersion', async () => {
localSmartVersion = new smartversion.SmartVersion('3.2.1')
expect(localSmartVersion).to.be.instanceof(smartversion.SmartVersion)
})
tap.start()