This commit is contained in:
Philipp Kunz
2016-05-20 19:06:25 +02:00
parent ed078ee29a
commit 4dab0f250a
9 changed files with 81 additions and 1 deletions

13
test/test.ts Normal file
View File

@@ -0,0 +1,13 @@
/// <reference path="../ts/typings/index.d.ts" />
import early = require("../dist/index.js");
describe("early",function(){
it(".start()",function(done){
this.timeout(10000);
early.start("early test");
setTimeout(done,5000);
});
it(".stop()",function(){
early.stop();
})
})