test: revise coverage-collect.js so it runs correctly on Windows

This commit is contained in:
Michael Bradley, Jr 2019-04-30 16:45:29 -05:00 committed by Michael Bradley
parent 436cfcbca0
commit e5fc9ffdf6
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ const rimraf = require('util').promisify(require('rimraf'));
const collector = path.join(__dirname, './coverage-collector.js');
const destination = path.join(__dirname, '../.nyc_output');
const cmd = `npx lerna exec --parallel 'node "${collector}" "${destination}"'`;
const cmd = `npx lerna exec --parallel node "${collector}" "${destination}"`;
(async () => {
await fs.mkdirp(destination);