1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
import assert from 'node:assert/strict';
import { describe, it } from 'node:test';
import { dependencies } from '../dist/index.js';
import { setup } from './utils.js';
describe('dependencies', () => {
const fixture = setup();
it('--yes', async () => {
const context = {
cwd: '',
yes: true,
packageManager: 'npm',
dryRun: true,
prompt: () => ({ deps: true }),
};
await dependencies(context);
assert.ok(fixture.hasMessage('Skipping dependency installation'));
});
it('prompt yes', async () => {
const context = {
cwd: '',
packageManager: 'npm',
dryRun: true,
prompt: () => ({ deps: true }),
install: undefined,
};
await dependencies(context);
assert.ok(fixture.hasMessage('Skipping dependency installation'));
assert.equal(context.install, true);
});
it('prompt no', async () => {
const context = {
cwd: '',
install: true,
packageManager: 'npm',
dryRun: true,
prompt: () => ({ deps: false }),
install: undefined,
};
await dependencies(context);
assert.ok(fixture.hasMessage('Skipping dependency installation'));
assert.equal(context.install, false);
});
it('--install', async () => {
const context = {
cwd: '',
install: true,
packageManager: 'npm',
dryRun: true,
prompt: () => ({ deps: false }),
};
await dependencies(context);
assert.ok(fixture.hasMessage('Skipping dependency installation'));
assert.equal(context.install, true);
});
it('--no-install ', async () => {
const context = {
cwd: '',
install: false,
packageManager: 'npm',
dryRun: true,
prompt: () => ({ deps: false }),
};
await dependencies(context);
assert.ok(fixture.hasMessage('Skipping dependency installation'));
assert.equal(context.install, false);
});
});
|