Skip to content

Commit 1d4719e

Browse files
chore(tests): allow retries for bulitins
This commit allows retries for the bulitins test suite, in particular `now-disabled` which seems to timeout sporadically.
1 parent d9d2ce1 commit 1d4719e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/builtins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ suite('Builtins', async () => {
1818

1919
for (const filename of builtins) {
2020
const name = filename.slice(0, -3);
21-
test.concurrent(name, async () => {
21+
test.concurrent(name, { retry: 3 }, async () => {
2222
// NOTE: import separated from await due to issues on windows (see note in util.js)
2323
const builtinModulePromise = import(`./builtins/${name}.js`);
2424

0 commit comments

Comments
 (0)