From 3e321c2b36bb378878af584fa7780a62e3003eb8 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 10 Jan 2025 13:20:16 +0000 Subject: [PATCH] test: don't install deps in test --- test/e2e/commands.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/commands.spec.ts b/test/e2e/commands.spec.ts index 480d51c1..a1390e99 100644 --- a/test/e2e/commands.spec.ts +++ b/test/e2e/commands.spec.ts @@ -44,7 +44,7 @@ describe('commands', () => { const installPath = join(dir, pm) await rm(installPath, { recursive: true, force: true }) try { - await x('nuxi', ['init', installPath, `--packageManager=${pm}`, '--gitInit=false', '--preferOffline'], { + await x('nuxi', ['init', installPath, `--packageManager=${pm}`, '--gitInit=false', '--preferOffline', '--install=false'], { nodeOptions: { stdio: 'inherit', cwd: fixtureDir }, }) const files = await readdir(installPath).catch(() => [])