Skip to content

Commit 2295824

Browse files
ci: skip flaky test in abort signal test suite (#4470)
Co-authored-by: Neal Beeken <[email protected]>
1 parent e927f97 commit 2295824

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/integration/node-specific/abort_signal.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,8 @@ describe('AbortSignal support', () => {
942942
const start = performance.now();
943943
const result = await collection.findOne({}, { signal }).catch(error => error);
944944
const end = performance.now();
945-
expect(end - start).to.be.lessThan(10); // shouldn't wait for the blocked connection
945+
// TODO(NODE-6833): This duration was bumped from 10 to 40 to reduce flakiness, if this fails again investigate it.
946+
expect(end - start).to.be.lessThan(40); // shouldn't wait for the blocked connection
946947

947948
expect(result).to.be.instanceOf(DOMException);
948949
});

0 commit comments

Comments
 (0)