We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20f5a79 commit 819d575Copy full SHA for 819d575
test/integration/telemetry/test/config.test.js
@@ -137,7 +137,7 @@ describe('config telemetry', () => {
137
138
it('detects output config for session start', async () => {
139
await fs.writeFile(
140
- './next.config.js',
+ path.join(appDir, 'next.config.js'),
141
'module.exports = { output: "export" }'
142
)
143
try {
@@ -157,7 +157,7 @@ describe('config telemetry', () => {
157
throw err
158
}
159
} finally {
160
- await fs.remove('./next.config.js')
+ await fs.remove(path.join(appDir, 'next.config.js'))
161
162
})
163
0 commit comments