From 77b90f408c4244e8ee2e4b3bd26c441d4a250671 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 21 Feb 2024 00:17:50 +0000 Subject: =?UTF-8?q?Revert=20"fix(console):=20support=20NO=5FCOLOR=20and=20?= =?UTF-8?q?colors=20option=20in=20all=20scena=E2=80=A6=20(#22507)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …rios (#21910)" This reverts commit bd1358efab8ba7339a8e70034315fa7da840292e. This change caused https://github.com/denoland/deno/issues/22496 and https://github.com/denoland/deno/issues/22445 --- tests/integration/run_tests.rs | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'tests/integration') 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"); -} -- cgit v1.2.3