summaryrefslogtreecommitdiff
path: root/cli/lsp/testing/execution.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-08-23 10:39:19 -0400
committerGitHub <noreply@github.com>2022-08-23 10:39:19 -0400
commite7367044d933ee3518ae583a43876a0ddab5b17e (patch)
treee557e3ea4faad632bcfafa6539f3bd0115dc6426 /cli/lsp/testing/execution.rs
parent362af63c6f45e98948536d08d2d6195af87f729c (diff)
feat: binary npm commands (#15542)
Diffstat (limited to 'cli/lsp/testing/execution.rs')
-rw-r--r--cli/lsp/testing/execution.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/lsp/testing/execution.rs b/cli/lsp/testing/execution.rs
index dde834221..950f2a96e 100644
--- a/cli/lsp/testing/execution.rs
+++ b/cli/lsp/testing/execution.rs
@@ -164,7 +164,8 @@ async fn test_specifier(
stdout: StdioPipe::File(sender.stdout()),
stderr: StdioPipe::File(sender.stderr()),
},
- );
+ )
+ .await?;
worker.run_lsp_test_specifier(mode).await?;
}