diff options
author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-05-09 13:49:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-09 13:49:10 -0700 |
commit | 19c0633a947f2ee28cc07b59c32322151779101d (patch) | |
tree | ab7983bf954cd109517f80b42bd3199eb27efaa4 /tests/integration/repl_tests.rs | |
parent | 439b3b8db97106be44bb5fde9573632c20ed4e95 (diff) |
refactor(lsp): Have JS drive TSC event loop in LSP (#23565)
Diffstat (limited to 'tests/integration/repl_tests.rs')
-rw-r--r-- | tests/integration/repl_tests.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/integration/repl_tests.rs b/tests/integration/repl_tests.rs index 4dc6ab44c..cdcab8e18 100644 --- a/tests/integration/repl_tests.rs +++ b/tests/integration/repl_tests.rs @@ -895,7 +895,7 @@ fn repl_with_quiet_flag() { assert!(!out.contains("Deno")); assert!(!out.contains("exit using ctrl+d, ctrl+c, or close()")); assert_ends_with!(out, "\"done\"\n"); - assert!(err.is_empty()); + assert!(err.is_empty(), "Error: {}", err); } #[test] @@ -959,7 +959,7 @@ fn npm_packages() { ); assert_contains!(out, "hello"); - assert!(err.is_empty()); + assert!(err.is_empty(), "Error: {}", err); } { @@ -975,7 +975,7 @@ fn npm_packages() { ); assert_contains!(out, "hello"); - assert!(err.is_empty()); + assert!(err.is_empty(), "Error: {}", err); } { @@ -989,7 +989,7 @@ fn npm_packages() { assert_contains!(out, "[Module: null prototype] {"); assert_contains!(out, "Chalk: [class Chalk],"); - assert!(err.is_empty()); + assert!(err.is_empty(), "Error: {}", err); } { @@ -1005,7 +1005,7 @@ fn npm_packages() { out, "error: npm package 'asdfawe52345asdf' does not exist" ); - assert!(err.is_empty()); + assert!(err.is_empty(), "Error: {}", err); } { @@ -1021,7 +1021,7 @@ fn npm_packages() { ); assert_contains!(out, "no"); - assert!(err.is_empty()); + assert!(err.is_empty(), "Error: {}", err); } } |