diff --git a/functions/helloworld/helloworldHttp/test/sample.integration.http.test.js b/functions/helloworld/helloworldHttp/test/sample.integration.http.test.js index 075cabdf78..f403d17223 100644 --- a/functions/helloworld/helloworldHttp/test/sample.integration.http.test.js +++ b/functions/helloworld/helloworldHttp/test/sample.integration.http.test.js @@ -19,8 +19,9 @@ const {getTestServer} = require('@google-cloud/functions-framework/testing'); // [END functions_http_integration_test] require('../'); - +// [START functions_http_integration_test] describe('functions_helloworld_http HTTP integration test', () => { + // [END functions_http_integration_test] // [START functions_http_integration_test] it('helloHttp: should print a name with req body', async () => { const server = getTestServer('helloHttp'); @@ -44,4 +45,6 @@ describe('functions_helloworld_http HTTP integration test', () => { .expect(200) .expect('Hello John!'); }); + // [START functions_http_integration_test] }); +// [END functions_http_integration_test]