diff options
author | Bartek Iwańczuk <biwanczuk@gmail.com> | 2024-02-21 00:17:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-21 00:17:50 +0000 |
commit | 77b90f408c4244e8ee2e4b3bd26c441d4a250671 (patch) | |
tree | 595945ffb83a3c17313222fe62da3f50000f09cc /tests/util/server/src/lib.rs | |
parent | ca8bc7ece8a37bc49aa3668cb64eada3027305d5 (diff) |
Revert "fix(console): support NO_COLOR and colors option in all scena… (#22507)
…rios (#21910)"
This reverts commit bd1358efab8ba7339a8e70034315fa7da840292e.
This change caused https://github.com/denoland/deno/issues/22496 and
https://github.com/denoland/deno/issues/22445
Diffstat (limited to 'tests/util/server/src/lib.rs')
-rw-r--r-- | tests/util/server/src/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/util/server/src/lib.rs b/tests/util/server/src/lib.rs index 65dfe61ec..ead05641d 100644 --- a/tests/util/server/src/lib.rs +++ b/tests/util/server/src/lib.rs @@ -511,7 +511,6 @@ pub struct CheckOutputIntegrationTest<'a> { pub http_server: bool, pub envs: Vec<(String, String)>, pub env_clear: bool, - pub skip_strip_ansi: bool, pub temp_cwd: bool, /// Copies the files at the specified directory in the "testdata" directory /// to the temp folder and runs the test from there. This is useful when @@ -553,9 +552,6 @@ impl<'a> CheckOutputIntegrationTest<'a> { if self.env_clear { command_builder = command_builder.env_clear(); } - if self.skip_strip_ansi { - command_builder = command_builder.skip_strip_ansi(); - } if let Some(cwd) = &self.cwd { command_builder = command_builder.current_dir(cwd); } |