fix(core): update and change scope

This commit is contained in:
2018-06-10 14:00:18 +02:00
parent 69fee8f8a2
commit 874349ba32
21 changed files with 493 additions and 648 deletions

View File

@ -7,12 +7,12 @@ let testTimer: Timer;
tap.test('should create a valid timer', async () => {
testTimer = new Timer(1000);
expect(testTimer).to.be.instanceof(Timer)
})
expect(testTimer).to.be.instanceof(Timer);
});
tap.test('should start timer', async () => {
testTimer.start()
testTimer.start();
await testTimer.completed;
})
});
tap.start()
tap.start();