early/test/test.ts
2016-05-21 20:33:13 +02:00

13 lines
316 B
TypeScript

/// <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");
setTimeout(done,5000);
});
it(".stop()",function(){
early.stop();
})
})