We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7a998c commit 40997d3Copy full SHA for 40997d3
run/helloworld/test/system.test.js
@@ -82,17 +82,21 @@ describe('End-to-End Tests', () => {
82
});
83
84
after(() => {
85
- /*let cleanUpCmd =
+ let cleanUpCmd =
86
`gcloud builds submit --project ${GOOGLE_CLOUD_PROJECT} ` +
87
'--config ./test/e2e_test_cleanup.yaml ' +
88
`--substitutions _SERVICE=${SERVICE_NAME},_PLATFORM=${PLATFORM},_REGION=${REGION}`;
89
if (SAMPLE_VERSION) cleanUpCmd += `,_VERSION=${SAMPLE_VERSION}`;
90
91
- execSync(cleanUpCmd);*/
+ execSync(cleanUpCmd);
92
93
94
it('Service uses the NAME override', async () => {
95
const response = await get('/', BASE_URL);
96
+
97
+ console.log('-------');
98
+ console.log(BASE_URL);
99
100
assert.strictEqual(
101
response.statusCode,
102
200,
0 commit comments