diff options
author | Luca Casonato <hello@lcas.dev> | 2024-01-23 16:37:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 16:37:43 +0100 |
commit | 137f1a0c6836b50292c53e15aa85bd56ad14a943 (patch) | |
tree | c0bf018dbacee30ca80817ffc82751b6f9870fa0 /cli/tests/integration/watcher_tests.rs | |
parent | 427b73c3ec1e01ca8c670d403a85fcf31777d253 (diff) |
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.
Diffstat (limited to 'cli/tests/integration/watcher_tests.rs')
-rw-r--r-- | cli/tests/integration/watcher_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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'); } |