2016-06-10 03:18:03 +00:00
|
|
|
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);
|
2016-05-21 18:33:13 +00:00
|
|
|
early.start("early");
|
2016-05-20 17:06:25 +00:00
|
|
|
setTimeout(done,5000);
|
|
|
|
});
|
|
|
|
it(".stop()",function(){
|
|
|
|
early.stop();
|
|
|
|
})
|
|
|
|
})
|