From d4a14077883d0208b0913e09dd53e61d733236e2 Mon Sep 17 00:00:00 2001 From: James Hugman Date: Mon, 11 Nov 2024 19:03:48 +0000 Subject: [PATCH] Relax timing of setTimeout in abort controller test --- typescript/tests/abort-controller.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/tests/abort-controller.test.ts b/typescript/tests/abort-controller.test.ts index 83dcb6f4..6b882b4b 100644 --- a/typescript/tests/abort-controller.test.ts +++ b/typescript/tests/abort-controller.test.ts @@ -41,7 +41,7 @@ test("AbortController exists", (t) => { // we don't care too much about the accuracy of the time here, just that the // classes exist and work as intended. - await t.asyncMeasure(() => cancellableDelay(500), 500, 100); + await t.asyncMeasure(() => cancellableDelay(500), 500, 150); t.end(); });