|
| 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 | +[0m[1mScripts[22m[0m available in [32ma@1.0.0[39m via \`[34mnpm run-script[39m\`: |
| 116 | + glorp |
| 117 | + [2mecho a doing the glerp glop[22m |
| 118 | +
|
| 119 | +[0m[1mScripts[22m[0m available in [32mb@2.0.0[39m via \`[34mnpm run-script[39m\`: |
| 120 | + glorp |
| 121 | + [2mecho b doing the glerp glop[22m |
| 122 | +
|
| 123 | +[0m[1mLifecycle scripts[22m[0m included in [32mc@1.0.0[39m: |
| 124 | + test |
| 125 | + [2mexit 0[22m |
| 126 | + posttest |
| 127 | + [2mecho posttest[22m |
| 128 | +[0m[1mScripts[22m[0m available in [32mc@1.0.0[39m via \`[34mnpm run-script[39m\`: |
| 129 | + lorem |
| 130 | + [2mecho c lorem[22m |
| 131 | +
|
| 132 | +[0m[1mLifecycle scripts[22m[0m included in [32md@1.0.0[39m: |
| 133 | + test |
| 134 | + [2mexit 0[22m |
| 135 | + posttest |
| 136 | + [2mecho posttest[22m |
| 137 | +
|
| 138 | +[0m[1mLifecycle scripts[22m[0m included in [32me[39m: |
| 139 | + test |
| 140 | + [2mexit 0[22m |
| 141 | + start |
| 142 | + [2mecho start something[22m |
| 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