Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ida613 committed Jan 8, 2025
1 parent c912c87 commit 25e4787
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/datadog-plugin-express/test/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1569,7 +1569,7 @@ describe('Plugin', () => {
middlewareDisabledTest('plugin', [{ middleware: false }, { client: false }], {})
middlewareDisabledTest('tracer', [{}, { client: false }], { middleware: false })

function middlewareDisabledTest(description, pluginConfig, tracerConfig) {
function middlewareDisabledTest (description, pluginConfig, tracerConfig) {
describe(`with configuration for middleware disabled via ${description} config`, () => {
before(() => {
return agent.load(['express', 'http'], pluginConfig, tracerConfig)
Expand All @@ -1581,6 +1581,7 @@ describe('Plugin', () => {

beforeEach(() => {
express = require(`../../../versions/express@${version}`).get()
// eslint-disable-next-line no-console
console.log('loaded express', description)
})

Expand Down Expand Up @@ -1773,7 +1774,6 @@ describe('Plugin', () => {
})
})
}

})
})
})

0 comments on commit 25e4787

Please sign in to comment.