Skip to content

Commit c0a4cb6

Browse files
fix(tests); always allow retry when running concurrently:
1 parent 4e9b2a5 commit c0a4cb6

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

test/util.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,7 @@ function isEnabledEnvVar(v) {
1414

1515
// Enable retries for individual tests if weval is under test
1616
export function buildDefaultTestOpts() {
17-
const opts = {};
18-
// if weval is enabled, for more retries
19-
if (WEVAL_TEST_ENABLED) {
20-
opts.retry = 3;
21-
}
22-
return opts;
17+
return { retry: 3 };
2318
}
2419

2520
// Utility function for getting a random port

0 commit comments

Comments
 (0)