clean up and update deps

This commit is contained in:
2017-02-17 18:56:58 +01:00
parent e3b1ec0633
commit 53c26d4634
53 changed files with 200 additions and 130144 deletions

View File

@@ -1,16 +1,16 @@
import 'typings-test'
import early = require('../dist/index')
describe('early',function(){
it('.start()',function(done){
this.timeout(10000)
early.start('early')
setTimeout(done,5000)
})
it('.stop()',function(done){
early.stop()
.then(() => {
done()
})
})
describe('early', function () {
it('.start()', function (done) {
this.timeout(10000)
early.start('early')
setTimeout(done, 5000)
})
it('.stop()', function (done) {
early.stop()
.then(() => {
done()
})
})
})