From 137f1a0c6836b50292c53e15aa85bd56ad14a943 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Tue, 23 Jan 2024 16:37:43 +0100 Subject: feat(cli): improved diagnostics printing (#22049) This initially uses the new diagnostic printer in `deno lint`, `deno doc` and `deno publish`. In the limit we should also update `deno check` to use this printer. --- cli/tests/integration/watcher_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tests/integration/watcher_tests.rs') diff --git a/cli/tests/integration/watcher_tests.rs b/cli/tests/integration/watcher_tests.rs index 008df3385..6a2cab08a 100644 --- a/cli/tests/integration/watcher_tests.rs +++ b/cli/tests/integration/watcher_tests.rs @@ -62,7 +62,7 @@ where if t.starts_with("Watcher") { break; } - if t.starts_with('(') { + if t.starts_with("error[") { str.push_str(&t); str.push('\n'); } -- cgit v1.2.3