Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/testing/src/TestStack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ class TestStack {
* Otherwise, we log messages that are either warnings or errors as well as periodic
* updates on the stack creation and destruction process.
*
* biome-ignore lint/suspicious/useAwait: The CDK interface requires this to be async
*
* @param msg - Message to log sent by the CDK CLI
*/
async notify(msg) {
Expand Down Expand Up @@ -115,6 +117,7 @@ class TestStack {
testConsole.log(msg);
}
},
// biome-ignore lint/suspicious/useAwait: The CDK interface requires this to be async
async requestResponse(msg) {
if (
process.env.RUNNER_DEBUG === '1' ||
Expand Down
2 changes: 1 addition & 1 deletion packages/testing/src/setupEnv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ expect.addEqualityTesters([
// or this.equals(a.message, b.message)
return this.equals(a.issues, b.issues);
}
return aOk !== bOk ? false : undefined;
return aOk === bOk ? undefined : false;
},
]);

Expand Down
2 changes: 1 addition & 1 deletion packages/testing/src/xray-traces-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import type {

const retryOptions = {
retries: 20,
minTimeout: 5_000,
minTimeout: 5000,
maxTimeout: 10_000,
factor: 1.25,
};
Expand Down
Loading