Skip to content

Commit cd017a2

Browse files
committed
fixup! test: ensure assertions are reached on more tests
1 parent 87fec9c commit cd017a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-abortcontroller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ test('Abort is fired with the correct event type on AbortControllers', () => {
2525
const fn = mock.fn(common.mustCall((event) => {
2626
assert.ok(event);
2727
assert.strictEqual(event.type, 'abort');
28-
}));
28+
}, 2));
2929

3030
ac.signal.onabort = fn;
3131
ac.signal.addEventListener('abort', fn);

0 commit comments

Comments
 (0)