mirror of
https://github.com/withastro/astro.git
synced 2025-01-13 22:11:20 -05:00
43 lines
1.6 KiB
JavaScript
43 lines
1.6 KiB
JavaScript
|
import { expect } from 'chai';
|
||
|
|
||
|
import { dependencies } from '../dist/index.js';
|
||
|
import { setup } from './utils.js';
|
||
|
|
||
|
describe('dependencies', () => {
|
||
|
const fixture = setup();
|
||
|
|
||
|
it('--yes', async () => {
|
||
|
const context = { cwd: '', yes: true, pkgManager: 'npm', dryRun: true, prompt: (() => ({ deps: true }))};
|
||
|
await dependencies(context);
|
||
|
expect(fixture.hasMessage('Skipping dependency installation')).to.be.true;
|
||
|
})
|
||
|
|
||
|
it('prompt yes', async () => {
|
||
|
const context = { cwd: '', pkgManager: 'npm', dryRun: true, prompt: (() => ({ deps: true })), install: undefined };
|
||
|
await dependencies(context);
|
||
|
expect(fixture.hasMessage('Skipping dependency installation')).to.be.true;
|
||
|
expect(context.install).to.eq(true);
|
||
|
})
|
||
|
|
||
|
it('prompt no', async () => {
|
||
|
const context = { cwd: '', pkgManager: 'npm', dryRun: true, prompt: (() => ({ deps: false })), install: undefined };
|
||
|
await dependencies(context);
|
||
|
expect(fixture.hasMessage('Skipping dependency installation')).to.be.true;
|
||
|
expect(context.install).to.eq(false);
|
||
|
})
|
||
|
|
||
|
it('--install', async () => {
|
||
|
const context = { cwd: '', install: true, pkgManager: 'npm', dryRun: true, prompt: (() => ({ deps: false })) };
|
||
|
await dependencies(context);
|
||
|
expect(fixture.hasMessage('Skipping dependency installation')).to.be.true;
|
||
|
expect(context.install).to.eq(true);
|
||
|
})
|
||
|
|
||
|
it('--no-install', async () => {
|
||
|
const context = { cwd: '', install: false, pkgManager: 'npm', dryRun: true, prompt: (() => ({ deps: false })) };
|
||
|
await dependencies(context);
|
||
|
expect(fixture.hasMessage('Skipping dependency installation')).to.be.true;
|
||
|
expect(context.install).to.eq(false);
|
||
|
})
|
||
|
})
|