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 and ztanner committed Jan 22, 2025
1 parent 20f5a79 commit 819d575
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 @@ -137,7 +137,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 @@ -157,7 +157,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 819d575

Please sign in to comment.