Skip to content

Commit

Permalink
Relax timing of setTimeout in abort controller test (#160)
Browse files Browse the repository at this point in the history
Fixes #159
  • Loading branch information
jhugman authored Nov 11, 2024
1 parent 6c96bd3 commit 28f931b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typescript/tests/abort-controller.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});

Expand Down

0 comments on commit 28f931b

Please sign in to comment.