early/test/test.ts

17 lines
348 B
TypeScript
Raw Normal View History

import 'typings-test'
import early = require('../dist/index')
2016-05-20 17:06:25 +00:00
describe('early',function(){
it('.start()',function(done){
this.timeout(10000)
early.start('early')
setTimeout(done,5000)
})
it('.stop()',function(done){
2016-06-11 21:47:52 +00:00
early.stop()
.then(() => {
done()
})
2016-05-20 17:06:25 +00:00
})
})