concurrently 5.3.0 → 6.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -10,11 +10,13 @@ Like `npm run watch-js & npm run watch-less` but better.
10
10
  ![](docs/demo.gif)
11
11
 
12
12
  **Table of contents**
13
- - [Why](#why)
14
- - [Install](#install)
15
- - [Usage](#usage)
16
- - [Programmatic Usage](#programmatic-usage)
17
- - [FAQ](#faq)
13
+ - [Concurrently](#concurrently)
14
+ - [Why](#why)
15
+ - [Install](#install)
16
+ - [Usage](#usage)
17
+ - [Programmatic Usage](#programmatic-usage)
18
+ - [`concurrently(commands[, options])`](#concurrentlycommands-options)
19
+ - [FAQ](#faq)
18
20
 
19
21
  ## Why
20
22
 
@@ -140,11 +142,12 @@ Prefix styling
140
142
  - Available modifiers: reset, bold, dim, italic,
141
143
  underline, inverse, hidden, strikethrough
142
144
  - Available colors: black, red, green, yellow, blue,
143
- magenta, cyan, white, gray
145
+ magenta, cyan, white, gray, or any hex values for
146
+ colors, eg #23de43
144
147
  - Available background colors: bgBlack, bgRed,
145
148
  bgGreen, bgYellow, bgBlue, bgMagenta, bgCyan, bgWhite
146
149
  See https://www.npmjs.com/package/chalk for more
147
- information. [string] [default: "gray.dim"]
150
+ information. [string] [default: "reset"]
148
151
  -l, --prefix-length Limit how many characters of the command is displayed
149
152
  in prefix. The option can be used to shorten the
150
153
  prefix when it is set to "command"
@@ -225,8 +228,10 @@ concurrently can be used programmatically by using the API documented below:
225
228
 
226
229
  ### `concurrently(commands[, options])`
227
230
  - `commands`: an array of either strings (containing the commands to run) or objects
228
- with the shape `{ command, name, prefixColor, env }`.
231
+ with the shape `{ command, name, prefixColor, env, cwd }`.
229
232
  - `options` (optional): an object containing any of the below:
233
+ - `cwd`: the working directory to be used by all commands. Can be overriden per command.
234
+ Default: `process.cwd()`.
230
235
  - `defaultInputTarget`: the default input target when reading from `inputStream`.
231
236
  Default: `0`.
232
237
  - `inputStream`: a [`Readable` stream](https://nodejs.org/dist/latest-v10.x/docs/api/stream.html#stream_readable_streams)
@@ -263,11 +268,13 @@ const concurrently = require('concurrently');
263
268
  concurrently([
264
269
  'npm:watch-*',
265
270
  { command: 'nodemon', name: 'server' },
266
- { command: 'deploy', name: 'deploy', env: { PUBLIC_KEY: '...' } }
271
+ { command: 'deploy', name: 'deploy', env: { PUBLIC_KEY: '...' } },
272
+ { command: 'watch', name: 'watch', cwd: path.resolve(__dirname, 'scripts/watchers')}
267
273
  ], {
268
274
  prefix: 'name',
269
275
  killOthers: ['failure', 'success'],
270
276
  restartTries: 3,
277
+ cwd: path.resolve(__dirname, 'scripts'),
271
278
  }).then(success, failure);
272
279
  ```
273
280
 
@@ -83,7 +83,8 @@ const args = yargs
83
83
  'Comma-separated list of chalk colors to use on prefixes. ' +
84
84
  'If there are more commands than colors, the last color will be repeated.\n' +
85
85
  '- Available modifiers: reset, bold, dim, italic, underline, inverse, hidden, strikethrough\n' +
86
- '- Available colors: black, red, green, yellow, blue, magenta, cyan, white, gray\n' +
86
+ '- Available colors: black, red, green, yellow, blue, magenta, cyan, white, gray \n' +
87
+ 'or any hex values for colors, eg #23de43\n' +
87
88
  '- Available background colors: bgBlack, bgRed, bgGreen, bgYellow, bgBlue, bgMagenta, bgCyan, bgWhite\n' +
88
89
  'See https://www.npmjs.com/package/chalk for more information.',
89
90
  default: defaults.prefixColors,
@@ -0,0 +1,365 @@
1
+ const readline = require('readline');
2
+ const _ = require('lodash');
3
+ const Rx = require('rxjs');
4
+ const { buffer, map } = require('rxjs/operators');
5
+ const spawn = require('spawn-command');
6
+
7
+ const isWindows = process.platform === 'win32';
8
+ const createKillMessage = prefix => new RegExp(
9
+ _.escapeRegExp(prefix) +
10
+ ' exited with code ' +
11
+ (isWindows ? 1 : '(SIGTERM|143)')
12
+ );
13
+
14
+ const run = args => {
15
+ const child = spawn('node ./concurrently.js ' + args, {
16
+ cwd: __dirname,
17
+ env: Object.assign({}, process.env, {
18
+ // When upgrading from jest 23 -> 24, colors started printing in the test output.
19
+ // They are forcibly disabled here
20
+ FORCE_COLOR: 0
21
+ }),
22
+ });
23
+
24
+ const stdout = readline.createInterface({
25
+ input: child.stdout,
26
+ output: null
27
+ });
28
+
29
+ const stderr = readline.createInterface({
30
+ input: child.stderr,
31
+ output: null
32
+ });
33
+
34
+ const close = Rx.fromEvent(child, 'close');
35
+ const log = Rx.merge(
36
+ Rx.fromEvent(stdout, 'line'),
37
+ Rx.fromEvent(stderr, 'line')
38
+ ).pipe(map(data => data.toString()));
39
+
40
+ return {
41
+ close,
42
+ log,
43
+ stdin: child.stdin,
44
+ pid: child.pid
45
+ };
46
+ };
47
+
48
+ it('has help command', done => {
49
+ run('--help').close.subscribe(event => {
50
+ expect(event[0]).toBe(0);
51
+ done();
52
+ }, done);
53
+ });
54
+
55
+ it('has version command', done => {
56
+ Rx.combineLatest(
57
+ run('--version').close,
58
+ run('-V').close,
59
+ run('-v').close
60
+ ).subscribe(events => {
61
+ expect(events[0][0]).toBe(0);
62
+ expect(events[1][0]).toBe(0);
63
+ expect(events[2][0]).toBe(0);
64
+ done();
65
+ }, done);
66
+ });
67
+
68
+ describe('exiting conditions', () => {
69
+ it('is of success by default when running successful commands', done => {
70
+ run('"echo foo" "echo bar"')
71
+ .close
72
+ .subscribe(exit => {
73
+ expect(exit[0]).toBe(0);
74
+ done();
75
+ }, done);
76
+ });
77
+
78
+ it('is of failure by default when one of the command fails', done => {
79
+ run('"echo foo" "exit 1"')
80
+ .close
81
+ .subscribe(exit => {
82
+ expect(exit[0]).toBeGreaterThan(0);
83
+ done();
84
+ }, done);
85
+ });
86
+
87
+ it('is of success when --success=first and first command to exit succeeds', done => {
88
+ run('--success=first "echo foo" "sleep 0.5 && exit 1"')
89
+ .close
90
+ .subscribe(exit => {
91
+ expect(exit[0]).toBe(0);
92
+ done();
93
+ }, done);
94
+ });
95
+
96
+ it('is of failure when --success=first and first command to exit fails', done => {
97
+ run('--success=first "exit 1" "sleep 0.5 && echo foo"')
98
+ .close
99
+ .subscribe(exit => {
100
+ expect(exit[0]).toBeGreaterThan(0);
101
+ done();
102
+ }, done);
103
+ });
104
+
105
+ it('is of success when --success=last and last command to exit succeeds', done => {
106
+ run('--success=last "exit 1" "sleep 0.5 && echo foo"')
107
+ .close
108
+ .subscribe(exit => {
109
+ expect(exit[0]).toBe(0);
110
+ done();
111
+ }, done);
112
+ });
113
+
114
+ it('is of failure when --success=last and last command to exit fails', done => {
115
+ run('--success=last "echo foo" "sleep 0.5 && exit 1"')
116
+ .close
117
+ .subscribe(exit => {
118
+ expect(exit[0]).toBeGreaterThan(0);
119
+ done();
120
+ }, done);
121
+ });
122
+
123
+ it.skip('is of success when a SIGINT is sent', done => {
124
+ const child = run('"node fixtures/read-echo.js"');
125
+ child.close.subscribe(exit => {
126
+ // TODO This is null within Node, but should be 0 outside (eg from real terminal)
127
+ expect(exit[0]).toBe(0);
128
+ done();
129
+ }, done);
130
+
131
+ process.kill(child.pid, 'SIGINT');
132
+ });
133
+
134
+ it('is aliased to -s', done => {
135
+ run('-s last "exit 1" "sleep 0.5 && echo foo"')
136
+ .close
137
+ .subscribe(exit => {
138
+ expect(exit[0]).toBe(0);
139
+ done();
140
+ }, done);
141
+ });
142
+ });
143
+
144
+ describe('--raw', () => {
145
+ it('is aliased to -r', done => {
146
+ const child = run('-r "echo foo" "echo bar"');
147
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
148
+ expect(lines).toHaveLength(2);
149
+ expect(lines).toContainEqual(expect.stringContaining('foo'));
150
+ expect(lines).toContainEqual(expect.stringContaining('bar'));
151
+ done();
152
+ }, done);
153
+ });
154
+
155
+ it('does not log any extra output', done => {
156
+ const child = run('--raw "echo foo" "echo bar"');
157
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
158
+ expect(lines).toHaveLength(2);
159
+ expect(lines).toContainEqual(expect.stringContaining('foo'));
160
+ expect(lines).toContainEqual(expect.stringContaining('bar'));
161
+ done();
162
+ }, done);
163
+ });
164
+ });
165
+
166
+ describe('--names', () => {
167
+ it('is aliased to -n', done => {
168
+ const child = run('-n foo,bar "echo foo" "echo bar"');
169
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
170
+ expect(lines).toContainEqual(expect.stringContaining('[foo] foo'));
171
+ expect(lines).toContainEqual(expect.stringContaining('[bar] bar'));
172
+ done();
173
+ }, done);
174
+ });
175
+
176
+ it('prefixes with names', done => {
177
+ const child = run('--names foo,bar "echo foo" "echo bar"');
178
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
179
+ expect(lines).toContainEqual(expect.stringContaining('[foo] foo'));
180
+ expect(lines).toContainEqual(expect.stringContaining('[bar] bar'));
181
+ done();
182
+ }, done);
183
+ });
184
+
185
+ it('is split using --name-separator arg', done => {
186
+ const child = run('--names "foo|bar" --name-separator "|" "echo foo" "echo bar"');
187
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
188
+ expect(lines).toContainEqual(expect.stringContaining('[foo] foo'));
189
+ expect(lines).toContainEqual(expect.stringContaining('[bar] bar'));
190
+ done();
191
+ }, done);
192
+ });
193
+ });
194
+
195
+ describe('--prefix', () => {
196
+ it('is alised to -p', done => {
197
+ const child = run('-p command "echo foo" "echo bar"');
198
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
199
+ expect(lines).toContainEqual(expect.stringContaining('[echo foo] foo'));
200
+ expect(lines).toContainEqual(expect.stringContaining('[echo bar] bar'));
201
+ done();
202
+ }, done);
203
+ });
204
+
205
+ it('specifies custom prefix', done => {
206
+ const child = run('--prefix command "echo foo" "echo bar"');
207
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
208
+ expect(lines).toContainEqual(expect.stringContaining('[echo foo] foo'));
209
+ expect(lines).toContainEqual(expect.stringContaining('[echo bar] bar'));
210
+ done();
211
+ }, done);
212
+ });
213
+ });
214
+
215
+ describe('--prefix-length', () => {
216
+ it('is alised to -l', done => {
217
+ const child = run('-p command -l 5 "echo foo" "echo bar"');
218
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
219
+ expect(lines).toContainEqual(expect.stringContaining('[ec..o] foo'));
220
+ expect(lines).toContainEqual(expect.stringContaining('[ec..r] bar'));
221
+ done();
222
+ }, done);
223
+ });
224
+
225
+ it('specifies custom prefix length', done => {
226
+ const child = run('--prefix command --prefix-length 5 "echo foo" "echo bar"');
227
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
228
+ expect(lines).toContainEqual(expect.stringContaining('[ec..o] foo'));
229
+ expect(lines).toContainEqual(expect.stringContaining('[ec..r] bar'));
230
+ done();
231
+ }, done);
232
+ });
233
+ });
234
+
235
+ describe('--restart-tries', () => {
236
+ it('changes how many times a command will restart', done => {
237
+ const child = run('--restart-tries 1 "exit 1"');
238
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
239
+ expect(lines).toEqual([
240
+ expect.stringContaining('[0] exit 1 exited with code 1'),
241
+ expect.stringContaining('[0] exit 1 restarted'),
242
+ expect.stringContaining('[0] exit 1 exited with code 1'),
243
+ ]);
244
+ done();
245
+ }, done);
246
+ });
247
+ });
248
+
249
+ describe('--kill-others', () => {
250
+ it('is alised to -k', done => {
251
+ const child = run('-k "sleep 10" "exit 0"');
252
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
253
+ expect(lines).toContainEqual(expect.stringContaining('[1] exit 0 exited with code 0'));
254
+ expect(lines).toContainEqual(expect.stringContaining('Sending SIGTERM to other processes'));
255
+ expect(lines).toContainEqual(expect.stringMatching(createKillMessage('[0] sleep 10')));
256
+ done();
257
+ }, done);
258
+ });
259
+
260
+ it('kills on success', done => {
261
+ const child = run('--kill-others "sleep 10" "exit 0"');
262
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
263
+ expect(lines).toContainEqual(expect.stringContaining('[1] exit 0 exited with code 0'));
264
+ expect(lines).toContainEqual(expect.stringContaining('Sending SIGTERM to other processes'));
265
+ expect(lines).toContainEqual(expect.stringMatching(createKillMessage('[0] sleep 10')));
266
+ done();
267
+ }, done);
268
+ });
269
+
270
+ it('kills on failure', done => {
271
+ const child = run('--kill-others "sleep 10" "exit 1"');
272
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
273
+ expect(lines).toContainEqual(expect.stringContaining('[1] exit 1 exited with code 1'));
274
+ expect(lines).toContainEqual(expect.stringContaining('Sending SIGTERM to other processes'));
275
+ expect(lines).toContainEqual(expect.stringMatching(createKillMessage('[0] sleep 10')));
276
+ done();
277
+ }, done);
278
+ });
279
+ });
280
+
281
+ describe('--kill-others-on-fail', () => {
282
+ it('does not kill on success', done => {
283
+ const child = run('--kill-others-on-fail "sleep 0.5" "exit 0"');
284
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
285
+ expect(lines).toContainEqual(expect.stringContaining('[1] exit 0 exited with code 0'));
286
+ expect(lines).toContainEqual(expect.stringContaining('[0] sleep 0.5 exited with code 0'));
287
+ done();
288
+ }, done);
289
+ });
290
+
291
+ it('kills on failure', done => {
292
+ const child = run('--kill-others-on-fail "sleep 10" "exit 1"');
293
+ child.log.pipe(buffer(child.close)).subscribe(lines => {
294
+ expect(lines).toContainEqual(expect.stringContaining('[1] exit 1 exited with code 1'));
295
+ expect(lines).toContainEqual(expect.stringContaining('Sending SIGTERM to other processes'));
296
+ expect(lines).toContainEqual(expect.stringMatching(createKillMessage('[0] sleep 10')));
297
+ done();
298
+ }, done);
299
+ });
300
+ });
301
+
302
+ describe('--handle-input', () => {
303
+ it('is alised to -i', done => {
304
+ const child = run('-i "node fixtures/read-echo.js"');
305
+ child.log.subscribe(line => {
306
+ if (/READING/.test(line)) {
307
+ child.stdin.write('stop\n');
308
+ }
309
+
310
+ if (/\[0\] stop/.test(line)) {
311
+ done();
312
+ }
313
+ }, done);
314
+ });
315
+
316
+ it('forwards input to first process by default', done => {
317
+ const child = run('--handle-input "node fixtures/read-echo.js"');
318
+ child.log.subscribe(line => {
319
+ if (/READING/.test(line)) {
320
+ child.stdin.write('stop\n');
321
+ }
322
+
323
+ if (/\[0\] stop/.test(line)) {
324
+ done();
325
+ }
326
+ }, done);
327
+ });
328
+
329
+
330
+ it('forwards input to process --default-input-target', done => {
331
+ const lines = [];
332
+ const child = run('-ki --default-input-target 1 "node fixtures/read-echo.js" "node fixtures/read-echo.js"');
333
+ child.log.subscribe(line => {
334
+ lines.push(line);
335
+ if (/\[1\] READING/.test(line)) {
336
+ child.stdin.write('stop\n');
337
+ }
338
+ }, done);
339
+
340
+ child.close.subscribe(exit => {
341
+ expect(exit[0]).toBeGreaterThan(0);
342
+ expect(lines).toContainEqual(expect.stringContaining('[1] stop'));
343
+ expect(lines).toContainEqual(expect.stringMatching(createKillMessage('[0] node fixtures/read-echo.js')));
344
+ done();
345
+ }, done);
346
+ });
347
+
348
+ it('forwards input to specified process', done => {
349
+ const lines = [];
350
+ const child = run('-ki "node fixtures/read-echo.js" "node fixtures/read-echo.js"');
351
+ child.log.subscribe(line => {
352
+ lines.push(line);
353
+ if (/\[1\] READING/.test(line)) {
354
+ child.stdin.write('1:stop\n');
355
+ }
356
+ }, done);
357
+
358
+ child.close.subscribe(exit => {
359
+ expect(exit[0]).toBeGreaterThan(0);
360
+ expect(lines).toContainEqual(expect.stringContaining('[1] stop'));
361
+ expect(lines).toContainEqual(expect.stringMatching(createKillMessage('[0] node fixtures/read-echo.js')));
362
+ done();
363
+ }, done);
364
+ });
365
+ });
package/index.js CHANGED
@@ -22,6 +22,7 @@ module.exports = (commands, options = {}) => {
22
22
  maxProcesses: options.maxProcesses,
23
23
  raw: options.raw,
24
24
  successCondition: options.successCondition,
25
+ cwd: options.cwd,
25
26
  controllers: [
26
27
  new LogError({ logger }),
27
28
  new LogOutput({ logger }),
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "concurrently",
3
- "version": "5.3.0",
3
+ "version": "6.1.0",
4
4
  "description": "Run commands concurrently",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "concurrently": "./bin/concurrently.js"
8
8
  },
9
9
  "engines": {
10
- "node": ">=6.0.0"
10
+ "node": ">=10.0.0"
11
11
  },
12
12
  "scripts": {
13
13
  "lint": "eslint . --ignore-path .gitignore",
@@ -29,20 +29,20 @@
29
29
  "author": "Kimmo Brunfeldt",
30
30
  "license": "MIT",
31
31
  "dependencies": {
32
- "chalk": "^2.4.2",
33
- "date-fns": "^2.0.1",
34
- "lodash": "^4.17.15",
35
- "read-pkg": "^4.0.1",
36
- "rxjs": "^6.5.2",
32
+ "chalk": "^4.1.0",
33
+ "date-fns": "^2.16.1",
34
+ "lodash": "^4.17.21",
35
+ "read-pkg": "^5.2.0",
36
+ "rxjs": "^6.6.3",
37
37
  "spawn-command": "^0.0.2-1",
38
- "supports-color": "^6.1.0",
38
+ "supports-color": "^8.1.0",
39
39
  "tree-kill": "^1.2.2",
40
- "yargs": "^13.3.0"
40
+ "yargs": "^16.2.0"
41
41
  },
42
42
  "devDependencies": {
43
- "coveralls": "^3.0.4",
44
- "eslint": "^5.16.0",
45
- "jest": "^24.8.0",
43
+ "coveralls": "^3.1.0",
44
+ "eslint": "^7.17.0",
45
+ "jest": "^26.6.3",
46
46
  "jest-create-mock-instance": "^1.1.0"
47
47
  },
48
48
  "files": [
@@ -0,0 +1,36 @@
1
+ const ExpandNpmShortcut = require('./expand-npm-shortcut');
2
+ const parser = new ExpandNpmShortcut();
3
+
4
+ it('returns same command if no npm: prefix is present', () => {
5
+ const commandInfo = {
6
+ name: 'echo',
7
+ command: 'echo foo'
8
+ };
9
+ expect(parser.parse(commandInfo)).toBe(commandInfo);
10
+ });
11
+
12
+ for (const npmCmd of ['npm', 'yarn', 'pnpm']) {
13
+ describe(`with ${npmCmd}: prefix`, () => {
14
+ it(`expands to "${npmCmd} run <script> <args>"`, () => {
15
+ const commandInfo = {
16
+ name: 'echo',
17
+ command: `${npmCmd}:foo -- bar`
18
+ };
19
+ expect(parser.parse(commandInfo)).toEqual({
20
+ name: 'echo',
21
+ command: `${npmCmd} run foo -- bar`
22
+ });
23
+ });
24
+
25
+ it('sets name to script name if none', () => {
26
+ const commandInfo = {
27
+ command: `${npmCmd}:foo -- bar`
28
+ };
29
+ expect(parser.parse(commandInfo)).toEqual({
30
+ name: 'foo',
31
+ command: `${npmCmd} run foo -- bar`
32
+ });
33
+ });
34
+ });
35
+
36
+ }
@@ -0,0 +1,58 @@
1
+ const ExpandNpmWildcard = require('./expand-npm-wildcard');
2
+
3
+ let parser, readPkg;
4
+
5
+ beforeEach(() => {
6
+ readPkg = jest.fn();
7
+ parser = new ExpandNpmWildcard(readPkg);
8
+ });
9
+
10
+ it('returns same command if not an npm run command', () => {
11
+ const commandInfo = {
12
+ command: 'npm test'
13
+ };
14
+
15
+ expect(readPkg).not.toHaveBeenCalled();
16
+ expect(parser.parse(commandInfo)).toBe(commandInfo);
17
+ });
18
+
19
+ it('returns same command if no wildcard present', () => {
20
+ const commandInfo = {
21
+ command: 'npm run foo bar'
22
+ };
23
+
24
+ expect(readPkg).not.toHaveBeenCalled();
25
+ expect(parser.parse(commandInfo)).toBe(commandInfo);
26
+ });
27
+
28
+ it('expands to nothing if no scripts exist in package.json', () => {
29
+ readPkg.mockReturnValue({});
30
+
31
+ expect(parser.parse({ command: 'npm run foo-*-baz qux' })).toEqual([]);
32
+ });
33
+
34
+ for (const npmCmd of ['npm', 'yarn', 'pnpm']) {
35
+ describe(`with an ${npmCmd}: prefix`, () => {
36
+ it('expands to all scripts matching pattern', () => {
37
+ readPkg.mockReturnValue({
38
+ scripts: {
39
+ 'foo-bar-baz': '',
40
+ 'foo--baz': '',
41
+ }
42
+ });
43
+
44
+ expect(parser.parse({ command: `${npmCmd} run foo-*-baz qux` })).toEqual([
45
+ { name: 'foo-bar-baz', command: `${npmCmd} run foo-bar-baz qux` },
46
+ { name: 'foo--baz', command: `${npmCmd} run foo--baz qux` },
47
+ ]);
48
+ });
49
+
50
+ it('caches scripts upon calls', () => {
51
+ readPkg.mockReturnValue({});
52
+ parser.parse({ command: `${npmCmd} run foo-*-baz qux` });
53
+ parser.parse({ command: `${npmCmd} run foo-*-baz qux` });
54
+
55
+ expect(readPkg).toHaveBeenCalledTimes(1);
56
+ });
57
+ });
58
+ }
@@ -0,0 +1,20 @@
1
+ const StripQuotes = require('./strip-quotes');
2
+ const parser = new StripQuotes();
3
+
4
+ it('returns command as is if no single/double quote at the beginning', () => {
5
+ expect(parser.parse({ command: 'echo foo' })).toEqual({ command: 'echo foo' });
6
+ });
7
+
8
+ it('strips single quotes', () => {
9
+ expect(parser.parse({ command: '\'echo foo\'' })).toEqual({ command: 'echo foo' });
10
+ });
11
+
12
+ it('strips double quotes', () => {
13
+ expect(parser.parse({ command: '"echo foo"' })).toEqual({ command: 'echo foo' });
14
+ });
15
+
16
+ it('does not remove quotes if they are impaired', () => {
17
+ expect(parser.parse({ command: '"echo foo' })).toEqual({ command: '"echo foo' });
18
+ expect(parser.parse({ command: 'echo foo\'' })).toEqual({ command: 'echo foo\'' });
19
+ expect(parser.parse({ command: '"echo foo\'' })).toEqual({ command: '"echo foo\'' });
20
+ });