Skip to content

Commit

Permalink
Fix subproject warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
watson committed Feb 14, 2025
1 parent a08679a commit 74bc477
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = {
defaultCommandTimeout: 100,
e2e: {
setupNodeEvents (on, config) {
return require('dd-trace/ci/cypress/plugin')(on, config) // eslint-disable-line n/no-extraneous-require
return require('dd-trace/ci/cypress/plugin')(on, config)
},
specPattern: process.env.SPEC_PATTERN || 'cypress/e2e/**/*.cy.js'
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('dd-trace/ci/cypress/plugin') // eslint-disable-line n/no-extraneous-require
module.exports = require('dd-trace/ci/cypress/plugin')
Original file line number Diff line number Diff line change
@@ -1 +1 @@
require('dd-trace/ci/cypress/support') // eslint-disable-line n/no-extraneous-require
require('dd-trace/ci/cypress/support')
5 changes: 4 additions & 1 deletion integration-tests/ci-visibility/subproject/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
"name": "subproject",
"private": true,
"version": "1.0.0",
"description": "app within repo"
"description": "app within repo",
"dependencies": {
"dd-trace": "file:../../.."
}
}

0 comments on commit 74bc477

Please sign in to comment.