summaryrefslogtreecommitdiff
path: root/packages/create-astro/test/next.test.js
diff options
context:
space:
mode:
authorGravatar Jacob Lamb <jacobtlamb@hey.com> 2023-09-06 02:15:10 -0700
committerGravatar GitHub <noreply@github.com> 2023-09-06 17:15:10 +0800
commitd2f2a11cdb42b0de79be21c798eda8e7e7b2a277 (patch)
treea1619904a1ec51bd6f25d0909db8707e57cf1f3d /packages/create-astro/test/next.test.js
parenteb8c4cc2fc578095e73f80c712615f323c7cbc61 (diff)
downloadastro-d2f2a11cdb42b0de79be21c798eda8e7e7b2a277.tar.gz
astro-d2f2a11cdb42b0de79be21c798eda8e7e7b2a277.tar.zst
astro-d2f2a11cdb42b0de79be21c798eda8e7e7b2a277.zip
Improve Package Detection (#8306)
Diffstat (limited to '')
-rw-r--r--packages/create-astro/test/next.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/create-astro/test/next.test.js b/packages/create-astro/test/next.test.js
index efc0e6728..07de90d50 100644
--- a/packages/create-astro/test/next.test.js
+++ b/packages/create-astro/test/next.test.js
@@ -7,14 +7,14 @@ describe('next steps', () => {
const fixture = setup();
it('no arguments', async () => {
- await next({ skipHouston: false, cwd: './it/fixtures/not-empty', pkgManager: 'npm' });
+ await next({ skipHouston: false, cwd: './it/fixtures/not-empty', packageManager: 'npm' });
expect(fixture.hasMessage('Liftoff confirmed.')).to.be.true;
expect(fixture.hasMessage('npm run dev')).to.be.true;
expect(fixture.hasMessage('Good luck out there, astronaut!')).to.be.true;
});
it('--skip-houston', async () => {
- await next({ skipHouston: true, cwd: './it/fixtures/not-empty', pkgManager: 'npm' });
+ await next({ skipHouston: true, cwd: './it/fixtures/not-empty', packageManager: 'npm' });
expect(fixture.hasMessage('Good luck out there, astronaut!')).to.be.false;
});
});