0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/packages/create-astro/test/integrations.test.js
2024-11-06 23:34:10 +08:00

64 lines
1.3 KiB
JavaScript

import assert from 'node:assert/strict';
import { describe, it } from 'node:test';
import { dependencies } from '../dist/index.js';
import { setup } from './utils.js';
describe('integrations', () => {
const fixture = setup();
it('--add node', async () => {
const context = {
cwd: '',
yes: true,
packageManager: 'npm',
dryRun: true,
add: ['node'],
};
await dependencies(context);
assert.ok(fixture.hasMessage('--dry-run Skipping dependency installation and adding node'));
});
it('--add node --add react', async () => {
const context = {
cwd: '',
yes: true,
packageManager: 'npm',
dryRun: true,
add: ['node', 'react'],
};
await dependencies(context);
assert.ok(
fixture.hasMessage('--dry-run Skipping dependency installation and adding node, react'),
);
});
it('--add node,react', async () => {
const context = {
cwd: '',
yes: true,
packageManager: 'npm',
dryRun: true,
add: ['node,react'],
};
await dependencies(context);
assert.ok(
fixture.hasMessage('--dry-run Skipping dependency installation and adding node, react'),
);
});
it('-y', async () => {
const context = {
cwd: '',
yes: true,
packageManager: 'npm',
dryRun: true,
};
await dependencies(context);
assert.ok(fixture.hasMessage('--dry-run Skipping dependency installation'));
});
});