diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-12-30 12:46:58 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-30 12:46:58 +1100 |
commit | e8a81724bb3b3767edaddbe78edc52108ae78b5f (patch) | |
tree | acbb7dc356519a77f810db2c203a6fafabf7cdf0 /cli/tests/integration_tests.rs | |
parent | 268e47c0d8a9fa7b7c16f6862f22361add370796 (diff) |
fix(lsp): handle ts debug errors better (#8914)
Fixes #8864
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 67cafeeca..a0827ff68 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -922,7 +922,7 @@ fn ts_reload() { .output() .expect("failed to spawn script"); // check the output of the the bundle program. - assert!(std::str::from_utf8(&output.stdout) + assert!(std::str::from_utf8(&output.stderr) .unwrap() .trim() .contains("host.writeFile(\"deno://002_hello.js\")")); |