Skip to content

Commit be9d381

Browse files
committed
fix e2e
1 parent 9d6ee74 commit be9d381

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/@apphosting/adapter-nextjs/e2e/run-local.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,10 @@ const scenarios: Scenario[] = [
5858
setup: async (cwd: string) => {
5959
const configContent = scenario.config;
6060
const files = await fsExtra.readdir(cwd);
61-
const configFiles = files.filter(file => file.startsWith('next.config.'))
62-
.map(file => join(cwd, file));
63-
61+
const configFiles = files
62+
.filter((file) => file.startsWith("next.config."))
63+
.map((file) => join(cwd, file));
64+
6465
for (const file of configFiles) {
6566
await fsExtra.remove(file);
6667
console.log(`Removed existing config file: ${file}`);

0 commit comments

Comments
 (0)