Skip to content

Commit

Permalink
[E2E] Fix config file conflict (#73818)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaojude authored Dec 11, 2024
1 parent 4d1613d commit 6c3a8a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/telemetry/test/config.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ describe('config telemetry', () => {

it('detects output config for session start', async () => {
await fs.writeFile(
'./next.config.js',
path.join(appDir, 'next.config.js'),
'module.exports = { output: "export" }'
)
try {
Expand All @@ -155,7 +155,7 @@ describe('config telemetry', () => {
throw err
}
} finally {
await fs.remove('./next.config.js')
await fs.remove(path.join(appDir, 'next.config.js'))
}
})

Expand Down

0 comments on commit 6c3a8a0

Please sign in to comment.