Skip to content

Commit f099f66

Browse files
authored
Don't use DD_ prefix on test-only env var (#5742)
* Going with TESTING_NO_INTEGRATION_SANDBOX
1 parent 00efd03 commit f099f66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration-tests/helpers/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ async function createSandbox (dependencies = [], isGitRepo = false,
147147
integrationTestsPaths = ['./integration-tests/*'], followUpCommand) {
148148
// We might use NODE_OPTIONS to init the tracer. We don't want this to affect this operations
149149
const { NODE_OPTIONS, ...restOfEnv } = process.env
150-
const noSandbox = String(process.env.DD_NO_INTEGRATION_TESTS_SANDBOX)
150+
const noSandbox = String(process.env.TESTING_NO_INTEGRATION_SANDBOX)
151151
if (noSandbox === '1' || noSandbox.toLowerCase() === 'true') {
152152
// Execute integration tests without a sandbox. This is useful when you have other components
153153
// yarn-linked into dd-trace and want to run the integration tests against them.

0 commit comments

Comments
 (0)