We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e9b2a5 commit c0a4cb6Copy full SHA for c0a4cb6
test/util.js
@@ -14,12 +14,7 @@ function isEnabledEnvVar(v) {
14
15
// Enable retries for individual tests if weval is under test
16
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;
+ return { retry: 3 };
23
}
24
25
// Utility function for getting a random port
0 commit comments