File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,8 @@ class TestStack {
80
80
* Otherwise, we log messages that are either warnings or errors as well as periodic
81
81
* updates on the stack creation and destruction process.
82
82
*
83
+ * biome-ignore lint/suspicious/useAwait: The CDK interface requires this to be async
84
+ *
83
85
* @param msg - Message to log sent by the CDK CLI
84
86
*/
85
87
async notify ( msg ) {
@@ -115,6 +117,7 @@ class TestStack {
115
117
testConsole . log ( msg ) ;
116
118
}
117
119
} ,
120
+ // biome-ignore lint/suspicious/useAwait: The CDK interface requires this to be async
118
121
async requestResponse ( msg ) {
119
122
if (
120
123
process . env . RUNNER_DEBUG === '1' ||
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ expect.addEqualityTesters([
228
228
// or this.equals(a.message, b.message)
229
229
return this . equals ( a . issues , b . issues ) ;
230
230
}
231
- return aOk !== bOk ? false : undefined ;
231
+ return aOk === bOk ? undefined : false ;
232
232
} ,
233
233
] ) ;
234
234
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import type {
16
16
17
17
const retryOptions = {
18
18
retries : 20 ,
19
- minTimeout : 5_000 ,
19
+ minTimeout : 5000 ,
20
20
maxTimeout : 10_000 ,
21
21
factor : 1.25 ,
22
22
} ;
You can’t perform that action at this time.
0 commit comments