chore: fix typo

This commit is contained in:
Jixun Wu 2023-06-03 14:15:21 +01:00
parent 4def7a260e
commit d91b71e0d3
1 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ import { nextTickAsync } from '../nextTick';
class SimpleQueue<T, R = void> extends ConcurrentQueue<T> { class SimpleQueue<T, R = void> extends ConcurrentQueue<T> {
handler(_item: T): Promise<R> { handler(_item: T): Promise<R> {
throw new Error('Method not overriden'); throw new Error('Method not overridden');
} }
} }
@ -39,7 +39,7 @@ test('should be able to process the queue within limit', async () => {
await promises[i]; await promises[i];
} }
// Wait till all fullfilled // Wait till all fulfilled
while (queuedResolver.length !== 5) { while (queuedResolver.length !== 5) {
await nextTickAsync(); await nextTickAsync();
} }
@ -85,13 +85,13 @@ test('it should move on to the next item in the queue once failed', async () =>
promises.push(queue.add(4)); promises.push(queue.add(4));
promises.push(queue.add(5)); promises.push(queue.add(5));
// Let first 2 be fullfilled // Let first 2 be fulfilled
for (let i = 0; i < 2; i++) { for (let i = 0; i < 2; i++) {
queuedResolver[i](); queuedResolver[i]();
await promises[i]; await promises[i];
} }
// Wait till all fullfilled // Wait till all fulfilled
while (queuedResolver.length !== 4) { while (queuedResolver.length !== 4) {
await nextTickAsync(); await nextTickAsync();
} }