We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7068818 commit bd47c97Copy full SHA for bd47c97
2 files changed
packages/cli/snap-tests/pass-no-color-env/snap.txt
@@ -1,9 +1,9 @@
1
> vp run check -- --foo # get NO_COLOR=true from default env
2
-$ node check.js -- --foo
+$ node --no-warnings check.js -- --foo
3
NO_COLOR=true, CI=true
4
5
6
> NO_COLOR=false vp run check -- --bar # get NO_COLOR=false from custom env
7
-$ node check.js -- --bar
+$ node --no-warnings check.js -- --bar
8
NO_COLOR=false, CI=true
9
packages/cli/snap-tests/pass-no-color-env/vite.config.ts
@@ -3,7 +3,7 @@ export default {
cache: true,
tasks: {
check: {
- command: 'node check.js',
+ command: 'node --no-warnings check.js',
untrackedEnv: ['NO_COLOR'],
},
0 commit comments