@emeryld/manager 0.7.9 → 0.7.10
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/dist/workspace.js +3 -2
- package/package.json +1 -1
package/dist/workspace.js
CHANGED
|
@@ -218,9 +218,10 @@ const TEST_SCENARIO = {
|
|
|
218
218
|
allArgs: ['test'],
|
|
219
219
|
allMessage: 'Running tests for all packages…',
|
|
220
220
|
singleArgs: (pkg) => [
|
|
221
|
+
'run',
|
|
222
|
+
'--filter',
|
|
223
|
+
pkg.dirName,
|
|
221
224
|
'test',
|
|
222
|
-
'--',
|
|
223
|
-
pkg.relativeDir === '.' ? '.' : pkg.relativeDir,
|
|
224
225
|
],
|
|
225
226
|
singleMessage: 'Running tests…',
|
|
226
227
|
};
|