initial
This commit is contained in:
13
test/test.ts
Normal file
13
test/test.ts
Normal 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();
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user