add cancelable Timeout

This commit is contained in:
2017-06-05 00:32:01 +02:00
parent f8cfd99c8c
commit 75358d0b66
9 changed files with 390 additions and 72 deletions

1
test/test.d.ts vendored
View File

@ -1 +0,0 @@
import 'typings-test';

View File

@ -1,30 +0,0 @@
"use strict";
require("typings-test");
const should = require("should");
const smartdelay = require("../dist/index");
describe('smartdelay', function () {
it('.delayFor should delay async', function (done) {
this.timeout(5000);
let timePassed = false;
setTimeout(() => {
timePassed = true;
}, 2000);
smartdelay.delayFor(3000).then(() => {
should(timePassed).be.true();
done();
});
});
it('.delayFor should pass on a type', function (done) {
this.timeout(5000);
let timePassed = false;
setTimeout(() => {
timePassed = true;
}, 2000);
let hey = 'heyThere';
smartdelay.delayFor(3000, hey).then((stringArg) => {
should(stringArg).equal('heyThere');
done();
});
});
});
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbInRlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLHdCQUFxQjtBQUVyQixpQ0FBZ0M7QUFFaEMsNENBQTJDO0FBRTNDLFFBQVEsQ0FBQyxZQUFZLEVBQUU7SUFDbkIsRUFBRSxDQUFDLDhCQUE4QixFQUFFLFVBQVMsSUFBSTtRQUM1QyxJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFBO1FBQ2xCLElBQUksVUFBVSxHQUFHLEtBQUssQ0FBQTtRQUN0QixVQUFVLENBQUM7WUFDUCxVQUFVLEdBQUcsSUFBSSxDQUFBO1FBQ3JCLENBQUMsRUFBQyxJQUFJLENBQUMsQ0FBQTtRQUNQLFVBQVUsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsSUFBSSxDQUFDO1lBQzNCLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQyxFQUFFLENBQUMsSUFBSSxFQUFFLENBQUE7WUFDNUIsSUFBSSxFQUFFLENBQUE7UUFDVixDQUFDLENBQUMsQ0FBQTtJQUNOLENBQUMsQ0FBQyxDQUFBO0lBQ0YsRUFBRSxDQUFDLGlDQUFpQyxFQUFFLFVBQVMsSUFBSTtRQUMvQyxJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFBO1FBQ2xCLElBQUksVUFBVSxHQUFHLEtBQUssQ0FBQTtRQUN0QixVQUFVLENBQUM7WUFDUCxVQUFVLEdBQUcsSUFBSSxDQUFBO1FBQ3JCLENBQUMsRUFBQyxJQUFJLENBQUMsQ0FBQTtRQUNQLElBQUksR0FBRyxHQUFHLFVBQVUsQ0FBQTtRQUNwQixVQUFVLENBQUMsUUFBUSxDQUFTLElBQUksRUFBRSxHQUFHLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxTQUFTO1lBQ2xELE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FBQyxLQUFLLENBQUMsVUFBVSxDQUFDLENBQUE7WUFDbkMsSUFBSSxFQUFFLENBQUE7UUFDVixDQUFDLENBQUMsQ0FBQTtJQUNOLENBQUMsQ0FBQyxDQUFBO0FBQ04sQ0FBQyxDQUFDLENBQUEifQ==

View File

@ -1,31 +1,39 @@
import 'typings-test'
import * as should from 'should'
import { expect, tap } from 'tapbundle'
import * as smartdelay from '../dist/index'
describe('smartdelay', function () {
it('.delayFor should delay async', function(done) {
this.timeout(5000)
let timePassed = false
setTimeout(() => {
timePassed = true
},2000)
smartdelay.delayFor(3000).then(() => {
should(timePassed).be.true()
done()
})
})
it('.delayFor should pass on a type', function(done) {
this.timeout(5000)
let timePassed = false
setTimeout(() => {
timePassed = true
},2000)
let hey = 'heyThere'
smartdelay.delayFor<string>(3000, hey).then((stringArg) => {
should(stringArg).equal('heyThere')
done()
})
})
tap.test('.delayFor should delay async', async (tools) => {
tools.timeout(5000)
let timePassed = false
setTimeout(() => {
timePassed = true
}, 2000)
await smartdelay.delayFor(3000).then(async () => {
// tslint:disable-next-line:no-unused-expression
expect(timePassed).to.be.true
})
})
tap.test('.delayFor should pass on a type', async (tools) => {
tools.timeout(5000)
let timePassed = false
setTimeout(() => {
timePassed = true
}, 2000)
let hey = 'heyThere'
await smartdelay.delayFor<string>(3000, hey).then(async (stringArg) => {
expect(stringArg).equal('heyThere')
})
})
tap.test('smartdelay.Timeout', async () => {
let timeout = new smartdelay.Timeout(2000)
await timeout.promise
})
tap.test('smartdelay.Timeout should cancel', async (tools) => {
let timeout = new smartdelay.Timeout(60000)
timeout.cancel()
})
tap.start()