Skip to content

Commit f39e193

Browse files
committed
build: disable color in another test spawn helper
1 parent 35431fe commit f39e193

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/utils/dev-server.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ export const getExecaOptions = ({ cwd, env }: { cwd: string; env: NodeJS.Process
1717
return {
1818
cwd,
1919
extendEnv: false,
20-
env: { ...baseEnv, BROWSER: 'none', ...env },
20+
// TODO(serhalp) Why not exercise colorization in integration tests? Remove and update snapshots?
21+
env: { ...baseEnv, BROWSER: 'none', NO_COLOR: '1', ...env },
2122
encoding: 'utf8',
2223
}
2324
}

0 commit comments

Comments
 (0)