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 cfd57af commit c90da4eCopy full SHA for c90da4e
packages/testing/src/TestStack.ts
@@ -80,6 +80,8 @@ class TestStack {
80
* Otherwise, we log messages that are either warnings or errors as well as periodic
81
* updates on the stack creation and destruction process.
82
*
83
+ * biome-ignore lint/suspicious/useAwait: The CDK interface requires this to be async
84
+ *
85
* @param msg - Message to log sent by the CDK CLI
86
*/
87
async notify(msg) {
@@ -115,6 +117,7 @@ class TestStack {
115
117
testConsole.log(msg);
116
118
}
119
},
120
+ // biome-ignore lint/suspicious/useAwait: The CDK interface requires this to be async
121
async requestResponse(msg) {
122
if (
123
process.env.RUNNER_DEBUG === '1' ||
0 commit comments