Skip to content

Commit

Permalink
Update pending-async-after-timeout.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle authored Feb 9, 2024
1 parent ab087ef commit 2af81f5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/cli/fixtures/pending-async-after-timeout.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Regression test for https://github.com/qunitjs/qunit/issues/1705
QUnit.test( "example", async assert => {
assert.timeout( 10 );
QUnit.test('example', async assert => {
assert.timeout(10);
// eslint-disable-next-line no-unused-vars
const done = assert.async();
assert.true( true );
} );
assert.true(true);
});

0 comments on commit 2af81f5

Please sign in to comment.