added ci and tests

This commit is contained in:
2017-04-12 11:38:52 +02:00
parent f392c41263
commit a079308d44
22 changed files with 2501 additions and 4 deletions

8
test/test.ts Normal file
View File

@ -0,0 +1,8 @@
import { expect, tap } from 'tapbundle'
import * as smartstatus from '../dist/index'
tap.test('should create valid status classes', async () => {
let myStatus301 = new smartstatus.status301()
return expect(myStatus301).to.be.instanceOf(smartstatus.HttpStatus)
})