diff --git a/tests/cli.test.ts b/tests/cli.test.ts index 37a4be05..0b536874 100644 --- a/tests/cli.test.ts +++ b/tests/cli.test.ts @@ -41,7 +41,7 @@ describe('ember addon -b ', () => { tmpDir = await createTmp(); let { name } = await createAddon({ - args: [`--${packageManager}`], + args: [`--${packageManager}=true`], options: { cwd: tmpDir }, }); @@ -128,7 +128,7 @@ describe('ember addon -b ', () => { location = 'packages/my-custom-location'; let { name } = await createAddon({ - args: [`--addon-location=${location}`, '--pnpm'], + args: [`--addon-location=${location}`, '--pnpm=true'], options: { cwd: tmpDir }, }); @@ -168,7 +168,7 @@ describe('ember addon -b ', () => { location = 'packages/my-custom-location'; let { name } = await createAddon({ - args: [`--test-app-location=${location}`, '--pnpm'], + args: [`--test-app-location=${location}`, '--pnpm=true'], options: { cwd: tmpDir }, });