ic-mops 0.12.2 → 0.12.3
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/commands/test.js +1 -1
- package/package.json +1 -1
- package/templates/mops-test.yml +1 -1
package/commands/test.js
CHANGED
|
@@ -105,7 +105,7 @@ export async function runAll(filter = '') {
|
|
|
105
105
|
file !== files[0] && console.log('-'.repeat(50));
|
|
106
106
|
console.log(`Running ${chalk.gray(absToRel(file))}`);
|
|
107
107
|
|
|
108
|
-
let proc = spawn(mocPath, ['-r', '-wasi-system-api', '-ref-system-api', '--hide-warnings', '--error-detail=2', ...sourcesArr.join(' ').split(' '), file]);
|
|
108
|
+
let proc = spawn(mocPath, ['-r', '-wasi-system-api', '-ref-system-api', '--hide-warnings', '--error-detail=2', ...sourcesArr.join(' ').split(' '), file].filter(x => x));
|
|
109
109
|
|
|
110
110
|
// stdout
|
|
111
111
|
proc.stdout.on('data', (data) => {
|
package/package.json
CHANGED