Skip to content

Commit 40997d3

Browse files
committed
test: adding in print logs for investigation
1 parent d7a998c commit 40997d3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

run/helloworld/test/system.test.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,21 @@ describe('End-to-End Tests', () => {
8282
});
8383

8484
after(() => {
85-
/*let cleanUpCmd =
85+
let cleanUpCmd =
8686
`gcloud builds submit --project ${GOOGLE_CLOUD_PROJECT} ` +
8787
'--config ./test/e2e_test_cleanup.yaml ' +
8888
`--substitutions _SERVICE=${SERVICE_NAME},_PLATFORM=${PLATFORM},_REGION=${REGION}`;
8989
if (SAMPLE_VERSION) cleanUpCmd += `,_VERSION=${SAMPLE_VERSION}`;
9090

91-
execSync(cleanUpCmd);*/
91+
execSync(cleanUpCmd);
9292
});
9393

9494
it('Service uses the NAME override', async () => {
9595
const response = await get('/', BASE_URL);
96+
97+
console.log('-------');
98+
console.log(BASE_URL);
99+
96100
assert.strictEqual(
97101
response.statusCode,
98102
200,

0 commit comments

Comments
 (0)