Skip to content

Commit

Permalink
chore(functions): remove BASE_URL env var (#2106)
Browse files Browse the repository at this point in the history
This variable no longer makes [as much] sense, given that the _system_ tests and _integration_ tests are no longer similar.

Co-authored-by: F. Hinkelmann <[email protected]>
  • Loading branch information
Ace Nassri and fhinkel authored Dec 11, 2020
1 parent fcef474 commit 0d58557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/helloworld/test/sample.integration.http.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const requestRetry = require('requestretry');
const uuid = require('uuid');

const PORT = process.env.PORT || 8080;
const BASE_URL = process.env.BASE_URL || `http://localhost:${PORT}`;
const BASE_URL = `http://localhost:${PORT}`;
const cwd = path.join(__dirname, '..');

// [END functions_http_integration_test]
Expand Down

0 comments on commit 0d58557

Please sign in to comment.