summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorBartek Iwańczuk <biwanczuk@gmail.com>2024-02-21 00:17:50 +0000
committerGitHub <noreply@github.com>2024-02-21 00:17:50 +0000
commit77b90f408c4244e8ee2e4b3bd26c441d4a250671 (patch)
tree595945ffb83a3c17313222fe62da3f50000f09cc /tests/integration
parentca8bc7ece8a37bc49aa3668cb64eada3027305d5 (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/integration')
-rw-r--r--tests/integration/run_tests.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/integration/run_tests.rs b/tests/integration/run_tests.rs
index a4bfc6345..f737c0a81 100644
--- a/tests/integration/run_tests.rs
+++ b/tests/integration/run_tests.rs
@@ -5164,17 +5164,3 @@ console.log(add(3, 4));
let output = test_context.new_command().args("run main.ts").run();
output.assert_matches_text("[WILDCARD]5\n7\n");
}
-
-#[test]
-fn inspect_color_overwrite() {
- let test_context = TestContextBuilder::new().build();
- let output = test_context
- .new_command()
- .skip_strip_ansi()
- .split_output()
- .env("NO_COLOR", "1")
- .args("run run/inspect_color_overwrite.ts")
- .run();
-
- assert_eq!(output.stdout(), "foo\u{1b}[31mbar\u{1b}[0m\n");
-}