diff options
author | Antonio Musolino <antoniomusolino007@gmail.com> | 2022-03-01 04:37:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 12:37:50 +0900 |
commit | 6a030a5396f9c838b4d4523f43ab2d9e2f502e04 (patch) | |
tree | 2ad4c356bb5c5ec5b91dbcd5dd9e3442fed0c2bc /runtime/worker.rs | |
parent | a41d399f5f728c73b652c3f5f5c2bf57d2054153 (diff) |
fix(runtime): disable console color for non tty stdout (#13782)
Diffstat (limited to 'runtime/worker.rs')
-rw-r--r-- | runtime/worker.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/worker.rs b/runtime/worker.rs index 1e31b84dc..b3f7b2350 100644 --- a/runtime/worker.rs +++ b/runtime/worker.rs @@ -360,6 +360,7 @@ mod tests { enable_testing_features: false, location: None, no_color: true, + is_tty: false, runtime_version: "x".to_string(), ts_version: "x".to_string(), unstable: false, |