diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 1 | ||||
-rw-r--r-- | cli/tests/integration/lsp_tests.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 7a3e4d0b5..42e7cd603 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -103,6 +103,7 @@ winapi = { version = "0.3.9", features = ["knownfolders", "mswsock", "objbase", chrono = "0.4.19" flaky_test = "0.1.0" os_pipe = "0.9.2" +pretty_assertions = "0.7.2" test_util = { path = "../test_util" } tower-test = "0.4.0" trust-dns-client = "0.20.3" 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; |