pull/1140/head
Audric Ackermann 5 years ago
parent ee6ee7ec4f
commit 6faa764419
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -2,7 +2,9 @@
type Arguments<T> = [T] extends [(...args: infer U) => any]
? U
: [T] extends [void] ? [] : [T];
: [T] extends [void]
? []
: [T];
/**
* Type-safe event emitter.

@ -25,7 +25,11 @@ describe('JobQueue', () => {
describe('addWithId', () => {
it('should run the jobs concurrently', async () => {
const input = [[10, 300], [20, 200], [30, 100]];
const input = [
[10, 300],
[20, 200],
[30, 100],
];
const queue = new JobQueue();
const mapper = async ([value, ms]: Array<number>): Promise<number> =>
queue.addWithId(uuid(), async () => {

Loading…
Cancel
Save