Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-fernandez committed Jul 2, 2024
1 parent 7a3fe44 commit 806a701
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
11 changes: 8 additions & 3 deletions integration-tests/jest/jest.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)
Expand Down Expand Up @@ -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'
}
)
Expand Down Expand Up @@ -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'
}
)
Expand Down
1 change: 0 additions & 1 deletion integration-tests/mocha/mocha.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ describe('mocha CommonJS', function () {
})
})


const envVarSettings = ['DD_TRACING_ENABLED', 'DD_TRACE_ENABLED']

envVarSettings.forEach(envVar => {
Expand Down

0 comments on commit 806a701

Please sign in to comment.