Skip to content

Commit d7a998c

Browse files
committed
test: test commit to recreate 404 in system test
1 parent e9fec8d commit d7a998c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

run/helloworld/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,7 @@ app.listen(port, () => {
2929
// [END run_helloworld_service]
3030
// [END cloudrun_helloworld_service]
3131

32+
// Hello
33+
3234
// Exports for testing purposes.
3335
export default app;

run/helloworld/test/system.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ 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 () => {

0 commit comments

Comments
 (0)