We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c90da4e commit f656481Copy full SHA for f656481
packages/testing/src/setupEnv.ts
@@ -228,7 +228,7 @@ expect.addEqualityTesters([
228
// or this.equals(a.message, b.message)
229
return this.equals(a.issues, b.issues);
230
}
231
- return aOk !== bOk ? false : undefined;
+ return aOk === bOk ? undefined : false;
232
},
233
]);
234
packages/testing/src/xray-traces-utils.ts
@@ -16,7 +16,7 @@ import type {
16
17
const retryOptions = {
18
retries: 20,
19
- minTimeout: 5_000,
+ minTimeout: 5000,
20
maxTimeout: 10_000,
21
factor: 1.25,
22
};
0 commit comments