now removing readline correcctly

This commit is contained in:
2016-06-11 23:47:52 +02:00
parent 24cce5d9b2
commit 03dfdda812
9 changed files with 45 additions and 9 deletions

View File

@@ -7,7 +7,8 @@ describe("early",function(){
early.start("early");
setTimeout(done,5000);
});
it(".stop()",function(){
early.stop();
it(".stop()",function(done){
early.stop()
.then(done);
})
})