Skip to content

Commit

Permalink
Test: Increase timeout for flaky webWorker.html
Browse files Browse the repository at this point in the history
This runs the entire test/main test suite as a single test.
Since 3c2b768 enabled a default
timeout of 3s, this has sometimes timed out in GitHub Actions.

It completed locally in about 0.9s, but a bit longer seems reasonable
for such a large test suite.
  • Loading branch information
Krinkle committed Jul 13, 2024
1 parent e0707db commit e31f348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/webWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
QUnit.module('Web Worker');

QUnit.test('main tests', function (assert) {
assert.expect(1);
assert.timeout(10000);
var done = assert.async();
var worker = new Worker('webWorker-worker.js');

Expand Down

0 comments on commit e31f348

Please sign in to comment.