early/test/test.ts
Philipp Kunz 4dab0f250a initial
2016-05-20 19:06:25 +02:00

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