diff options
author | Satya Rohith <me@satyarohith.com> | 2021-09-15 16:04:17 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 16:04:17 +0530 |
commit | badc87e657f61c522fcf149f23f9a0204c35714f (patch) | |
tree | 8e9cd42325ebf8511c3e09f35a647625eed8cdc9 /cli/tests | |
parent | f92cc66f0dbf8e9753f2e98d4469190f3b561eb0 (diff) |
chore(lsp): use pretty_assertions in e2e tests (#12083)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/integration/lsp_tests.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tests/integration/lsp_tests.rs b/cli/tests/integration/lsp_tests.rs index 5034b6ed6..0b06beed4 100644 --- a/cli/tests/integration/lsp_tests.rs +++ b/cli/tests/integration/lsp_tests.rs @@ -7,6 +7,7 @@ use deno_core::serde_json::json; use deno_core::serde_json::Value; use deno_core::url::Url; use lspower::lsp; +use pretty_assertions::assert_eq; use std::fs; use tempfile::TempDir; use test_util::deno_exe_path; |