Skip to content

Commit 872be60

Browse files
committed
run-script snapshot tests
1 parent 85c6fbb commit 872be60

File tree

3 files changed

+278
-203
lines changed

3 files changed

+278
-203
lines changed

lib/commands/run-script.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,12 @@ class RunScript extends BaseCommand {
157157
}
158158

159159
const [cmds, runScripts] = scriptEntries.reduce((acc, s) => {
160-
acc[cmdList.includes(s) ? 0 : 1].push(s)
160+
acc[cmdList.includes(s[0]) ? 0 : 1].push(s)
161161
return acc
162162
}, [[], []])
163163

164164
const { reset, bold, green, dim, blue } = this.npm.chalk
165-
let pkgId = ` in ${green(_id || name)}`
165+
const pkgId = ` in ${green(_id || name)}`
166166
const title = (t) => reset(bold(t))
167167

168168
if (cmds.length) {
@@ -171,7 +171,6 @@ class RunScript extends BaseCommand {
171171
output.standard(` ${k}`)
172172
output.standard(` ${dim(v)}`)
173173
}
174-
pkgId = ''
175174
}
176175

177176
if (runScripts.length) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,259 @@
1+
/* IMPORTANT
2+
* This snapshot file is auto-generated, but designed for humans.
3+
* It should be checked into source control and tracked carefully.
4+
* Re-generate by setting TAP_SNAPSHOT=1 and running tests.
5+
* Make sure to inspect the output below. Do not ignore changes!
6+
*/
7+
'use strict'
8+
exports[`test/lib/commands/run-script.js TAP list scripts no args > basic report 1`] = `
9+
Lifecycle scripts included in x@1.2.3:
10+
test
11+
exit 2
12+
start
13+
node server.js
14+
stop
15+
node kill-server.js
16+
Scripts available in x@1.2.3 via \`npm run-script\`:
17+
preenv
18+
echo before the env
19+
postenv
20+
echo after the env
21+
`
22+
23+
exports[`test/lib/commands/run-script.js TAP list scripts parseable > must match snapshot 1`] = `
24+
test:exit 2
25+
start:node server.js
26+
stop:node kill-server.js
27+
preenv:echo before the env
28+
postenv:echo after the env
29+
`
30+
31+
exports[`test/lib/commands/run-script.js TAP list scripts warn json > json report 1`] = `
32+
{
33+
test: 'exit 2',
34+
start: 'node server.js',
35+
stop: 'node kill-server.js',
36+
preenv: 'echo before the env',
37+
postenv: 'echo after the env'
38+
}
39+
`
40+
41+
exports[`test/lib/commands/run-script.js TAP list scripts, only commands > must match snapshot 1`] = `
42+
Lifecycle scripts included in x@1.2.3:
43+
preversion
44+
echo doing the version dance
45+
`
46+
47+
exports[`test/lib/commands/run-script.js TAP list scripts, only non-commands > must match snapshot 1`] = `
48+
Scripts available in x@1.2.3 via \`npm run-script\`:
49+
glorp
50+
echo doing the glerp glop
51+
`
52+
53+
exports[`test/lib/commands/run-script.js TAP workspaces failed workspace run with succeeded runs > should log error msgs for each workspace script 1`] = `
54+
Lifecycle script \`glorp\` failed with error:
55+
Error: ERR
56+
in workspace: a@1.0.0
57+
at location: {CWD}/prefix/packages/a
58+
`
59+
60+
exports[`test/lib/commands/run-script.js TAP workspaces list all scripts --json > must match snapshot 1`] = `
61+
{ a: { glorp: 'echo a doing the glerp glop' } }
62+
{ b: { glorp: 'echo b doing the glerp glop' } }
63+
{
64+
c: { test: 'exit 0', posttest: 'echo posttest', lorem: 'echo c lorem' }
65+
}
66+
{ d: { test: 'exit 0', posttest: 'echo posttest' } }
67+
{ e: { test: 'exit 0', start: 'echo start something' } }
68+
{ noscripts: {} }
69+
`
70+
71+
exports[`test/lib/commands/run-script.js TAP workspaces list all scripts --parseable > must match snapshot 1`] = `
72+
a:glorp:echo a doing the glerp glop
73+
b:glorp:echo b doing the glerp glop
74+
c:test:exit 0
75+
c:posttest:echo posttest
76+
c:lorem:echo c lorem
77+
d:test:exit 0
78+
d:posttest:echo posttest
79+
e:test:exit 0
80+
e:start:echo start something
81+
`
82+
83+
exports[`test/lib/commands/run-script.js TAP workspaces list all scripts > must match snapshot 1`] = `
84+
Scripts available in a@1.0.0 via \`npm run-script\`:
85+
glorp
86+
echo a doing the glerp glop
87+
88+
Scripts available in b@2.0.0 via \`npm run-script\`:
89+
glorp
90+
echo b doing the glerp glop
91+
92+
Lifecycle scripts included in c@1.0.0:
93+
test
94+
exit 0
95+
posttest
96+
echo posttest
97+
Scripts available in c@1.0.0 via \`npm run-script\`:
98+
lorem
99+
echo c lorem
100+
101+
Lifecycle scripts included in d@1.0.0:
102+
test
103+
exit 0
104+
posttest
105+
echo posttest
106+
107+
Lifecycle scripts included in e:
108+
test
109+
exit 0
110+
start
111+
echo start something
112+
`
113+
114+
exports[`test/lib/commands/run-script.js TAP workspaces list all scripts with colors > must match snapshot 1`] = `
115+
Scripts available in a@1.0.0 via \`npm run-script\`:
116+
glorp
117+
echo a doing the glerp glop
118+
119+
Scripts available in b@2.0.0 via \`npm run-script\`:
120+
glorp
121+
echo b doing the glerp glop
122+
123+
Lifecycle scripts included in c@1.0.0:
124+
test
125+
exit 0
126+
posttest
127+
echo posttest
128+
Scripts available in c@1.0.0 via \`npm run-script\`:
129+
lorem
130+
echo c lorem
131+
132+
Lifecycle scripts included in d@1.0.0:
133+
test
134+
exit 0
135+
posttest
136+
echo posttest
137+
138+
Lifecycle scripts included in e:
139+
test
140+
exit 0
141+
start
142+
echo start something
143+
`
144+
145+
exports[`test/lib/commands/run-script.js TAP workspaces list regular scripts, filtered by name > must match snapshot 1`] = `
146+
Scripts available in a@1.0.0 via \`npm run-script\`:
147+
glorp
148+
echo a doing the glerp glop
149+
150+
Scripts available in b@2.0.0 via \`npm run-script\`:
151+
glorp
152+
echo b doing the glerp glop
153+
`
154+
155+
exports[`test/lib/commands/run-script.js TAP workspaces list regular scripts, filtered by parent folder > must match snapshot 1`] = `
156+
Scripts available in a@1.0.0 via \`npm run-script\`:
157+
glorp
158+
echo a doing the glerp glop
159+
160+
Scripts available in b@2.0.0 via \`npm run-script\`:
161+
glorp
162+
echo b doing the glerp glop
163+
164+
Lifecycle scripts included in c@1.0.0:
165+
test
166+
exit 0
167+
posttest
168+
echo posttest
169+
Scripts available in c@1.0.0 via \`npm run-script\`:
170+
lorem
171+
echo c lorem
172+
173+
Lifecycle scripts included in d@1.0.0:
174+
test
175+
exit 0
176+
posttest
177+
echo posttest
178+
179+
Lifecycle scripts included in e:
180+
test
181+
exit 0
182+
start
183+
echo start something
184+
`
185+
186+
exports[`test/lib/commands/run-script.js TAP workspaces list regular scripts, filtered by path > must match snapshot 1`] = `
187+
Scripts available in a@1.0.0 via \`npm run-script\`:
188+
glorp
189+
echo a doing the glerp glop
190+
`
191+
192+
exports[`test/lib/commands/run-script.js TAP workspaces missing scripts in all workspaces > should log error msgs for each workspace script 1`] = `
193+
Lifecycle script \`missing-script\` failed with error:
194+
Error: Missing script: "missing-script"
195+
196+
To see a list of scripts, run:
197+
npm run
198+
in workspace: a@1.0.0
199+
at location: {CWD}/prefix/packages/a
200+
Lifecycle script \`missing-script\` failed with error:
201+
Error: Missing script: "missing-script"
202+
203+
To see a list of scripts, run:
204+
npm run
205+
in workspace: b@2.0.0
206+
at location: {CWD}/prefix/packages/b
207+
Lifecycle script \`missing-script\` failed with error:
208+
Error: Missing script: "missing-script"
209+
210+
To see a list of scripts, run:
211+
npm run
212+
in workspace: c@1.0.0
213+
at location: {CWD}/prefix/packages/c
214+
Lifecycle script \`missing-script\` failed with error:
215+
Error: Missing script: "missing-script"
216+
217+
To see a list of scripts, run:
218+
npm run
219+
in workspace: d@1.0.0
220+
at location: {CWD}/prefix/packages/d
221+
Lifecycle script \`missing-script\` failed with error:
222+
Error: Missing script: "missing-script"
223+
224+
To see a list of scripts, run:
225+
npm run
226+
in workspace: e
227+
at location: {CWD}/prefix/packages/e
228+
Lifecycle script \`missing-script\` failed with error:
229+
Error: Missing script: "missing-script"
230+
231+
To see a list of scripts, run:
232+
npm run
233+
in workspace: noscripts@1.0.0
234+
at location: {CWD}/prefix/packages/noscripts
235+
`
236+
237+
exports[`test/lib/commands/run-script.js TAP workspaces missing scripts in some workspaces > should log error msgs for each workspace script 1`] = `
238+
Lifecycle script \`test\` failed with error:
239+
Error: Missing script: "test"
240+
241+
To see a list of scripts, run:
242+
npm run
243+
in workspace: a@1.0.0
244+
at location: {CWD}/prefix/packages/a
245+
Lifecycle script \`test\` failed with error:
246+
Error: Missing script: "test"
247+
248+
To see a list of scripts, run:
249+
npm run
250+
in workspace: b@2.0.0
251+
at location: {CWD}/prefix/packages/b
252+
`
253+
254+
exports[`test/lib/commands/run-script.js TAP workspaces single failed workspace run > should log error msgs for each workspace script 1`] = `
255+
Lifecycle script \`test\` failed with error:
256+
Error: err
257+
in workspace: c@1.0.0
258+
at location: {CWD}/prefix/packages/c
259+
`

0 commit comments

Comments
 (0)