Skip to content

Commit fcf748e

Browse files
authored
Adds additional context to error messages for pools and workflows integration test. (#7137)
1 parent 87d4a25 commit fcf748e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

javascriptv3/example_code/cross-services/wkflw-pools-triggers/tests/scenario-auto-confirm.integration.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ describe("Scenario - AutoConfirm", () => {
4242
);
4343
const stack = Stacks[0];
4444
if (stack.StackStatus !== "CREATE_COMPLETE") {
45-
throw new Error("Stack creation incomplete.");
45+
throw new Error(
46+
`Stack creation incomplete. STATUS: ${stack.StackStatus}`,
47+
);
4648
}
4749
},
4850
);

0 commit comments

Comments
 (0)