Skip to content

Commit 1bc9650

Browse files
authored
JS: Disable wkflw-resilient-service.integration.test.js (#7429)
* JS: Disable wkflw-resilient-service.integration.test.js
1 parent 1059c1c commit 1bc9650

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

javascriptv3/example_code/cross-services/wkflw-resilient-service/tests/wkflw-resilient-service.integration.test.js

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ import { scenarios } from "../index.js";
66

77
describe("workflow", () => {
88
it("should run without error", async () => {
9-
try {
10-
await scenarios.deploy.run({ confirmAll: true, verbose: true });
11-
await scenarios.demo.run({ confirmAll: true, verbose: true });
12-
await scenarios.destroy.run({ confirmAll: true, verbose: true });
13-
} catch (err) {
14-
await scenarios.destroy.run({ confirmAll: true, verbose: true });
15-
throw err;
16-
}
9+
// This test is failing regularly due to resource constraints. We're disabling it for now.
10+
// try {
11+
// await scenarios.deploy.run({ confirmAll: true, verbose: true });
12+
// await scenarios.demo.run({ confirmAll: true, verbose: true });
13+
// await scenarios.destroy.run({ confirmAll: true, verbose: true });
14+
// } catch (err) {
15+
// await scenarios.destroy.run({ confirmAll: true, verbose: true });
16+
// throw err;
17+
// }
1718
});
1819
});

0 commit comments

Comments
 (0)