We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63bd2f7 commit 2dd5b41Copy full SHA for 2dd5b41
1 file changed
tests/helpers/aws-gateway-helper.ts
@@ -9,6 +9,8 @@ export default async function getRestApiGatewayBaseUrl(): Promise<string> {
9
const client = new APIGatewayClient({ region });
10
11
const apis = await client.send(new GetRestApisCommand({}));
12
+ console.log(apis);
13
+
14
const api = apis.items?.find((a) => a.name === API_NAME);
15
16
if (!api?.id) throw new Error(`API with name "${API_NAME}" not found.`);
0 commit comments