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 ef87110 commit 372c7ceCopy full SHA for 372c7ce
1 file changed
apps/webapp/test/getDeploymentImageRef.test.ts
@@ -8,8 +8,8 @@ import { ECRClient, DeleteRepositoryCommand } from "@aws-sdk/client-ecr";
8
9
describe.skipIf(process.env.RUN_REGISTRY_TESTS !== "1")("getDeploymentImageRef", () => {
10
const testHost = "123456789012.dkr.ecr.us-east-1.amazonaws.com";
11
- const testNamespace = "test-namespace";
12
- const testProjectRef = "test-project-" + Math.random().toString(36).substring(7);
+ const testNamespace = process.env.DEPLOY_REGISTRY_NAMESPACE || "test-namespace";
+ const testProjectRef = "proj_test_" + Math.random().toString(36).substring(7);
13
14
const registryId = process.env.DEPLOY_REGISTRY_ID;
15
const registryTags = "test=test,test2=test2";
0 commit comments