diff --git a/integration-tests/jest/jest.spec.js b/integration-tests/jest/jest.spec.js index 165cb1bcbf0..4f9d01dbf8b 100644 --- a/integration-tests/jest/jest.spec.js +++ b/integration-tests/jest/jest.spec.js @@ -783,7 +783,6 @@ describe('jest CommonJS', () => { }) }) it('can report code coverage', (done) => { - let testOutput const libraryConfigRequestPromise = receiver.payloadReceived( ({ url }) => url === '/api/v2/libraries/tests/services/setting' ) @@ -1666,7 +1665,10 @@ describe('jest CommonJS', () => { runTestsWithCoverageCommand, { cwd, - env: { ...getCiVisEvpProxyConfig(receiver.port), TESTS_TO_RUN: 'test-early-flake-detection/occasionally-failing-test' }, + env: { + ...getCiVisEvpProxyConfig(receiver.port), + TESTS_TO_RUN: 'test-early-flake-detection/occasionally-failing-test' + }, stdio: 'inherit' } ) @@ -1723,7 +1725,10 @@ describe('jest CommonJS', () => { runTestsWithCoverageCommand, { cwd, - env: { ...getCiVisEvpProxyConfig(receiver.port), TESTS_TO_RUN: 'test-early-flake-detection/skipped-and-todo-test' }, + env: { + ...getCiVisEvpProxyConfig(receiver.port), + TESTS_TO_RUN: 'test-early-flake-detection/skipped-and-todo-test' + }, stdio: 'inherit' } ) diff --git a/integration-tests/mocha/mocha.spec.js b/integration-tests/mocha/mocha.spec.js index 1d300201060..9661c809c8f 100644 --- a/integration-tests/mocha/mocha.spec.js +++ b/integration-tests/mocha/mocha.spec.js @@ -183,7 +183,6 @@ describe('mocha CommonJS', function () { }) }) - const envVarSettings = ['DD_TRACING_ENABLED', 'DD_TRACE_ENABLED'] envVarSettings.forEach(envVar => {