Skip to content

Commit 96d88d1

Browse files
committed
Merge branch 'main' into poc/fix-e2e
2 parents 435cba0 + 8facb32 commit 96d88d1

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.changeset/eight-bags-walk.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

packages/integration-tests/src/test-live-dependency-health-checks/health_checks.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import {
1717
rejectCleanupSandbox,
1818
waitForSandboxDeploymentToPrintTotalTime,
1919
} from '../process-controller/predicated_action_macros.js';
20+
import { BackendIdentifierConversions } from '@aws-amplify/platform-core';
2021

2122
const cfnClient = new CloudFormationClient();
2223

@@ -57,7 +58,11 @@ void describe('Live dependency health checks', { concurrency: true }, () => {
5758

5859
afterEach(async () => {
5960
await fs.rm(tempDir, { recursive: true });
60-
const stackName = `amplify-${testBranch.appId}-${testBranch.branchName}`;
61+
const stackName = BackendIdentifierConversions.toStackName({
62+
namespace: testBranch.appId,
63+
name: testBranch.branchName,
64+
type: 'branch',
65+
});
6166
try {
6267
await cfnClient.send(
6368
new DeleteStackCommand({

0 commit comments

Comments
 (0)