diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-08-23 10:39:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 10:39:19 -0400 |
commit | e7367044d933ee3518ae583a43876a0ddab5b17e (patch) | |
tree | e557e3ea4faad632bcfafa6539f3bd0115dc6426 /cli/tools | |
parent | 362af63c6f45e98948536d08d2d6195af87f729c (diff) |
feat: binary npm commands (#15542)
Diffstat (limited to 'cli/tools')
-rw-r--r-- | cli/tools/bench.rs | 3 | ||||
-rw-r--r-- | cli/tools/test.rs | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/cli/tools/bench.rs b/cli/tools/bench.rs index 3d52e4226..ccff3d615 100644 --- a/cli/tools/bench.rs +++ b/cli/tools/bench.rs @@ -362,7 +362,8 @@ async fn bench_specifier( ps.options.unstable(), )], Default::default(), - ); + ) + .await?; worker.run_bench_specifier().await } diff --git a/cli/tools/test.rs b/cli/tools/test.rs index da44eba7c..265b39b57 100644 --- a/cli/tools/test.rs +++ b/cli/tools/test.rs @@ -723,7 +723,8 @@ async fn test_specifier( stdout: StdioPipe::File(sender.stdout()), stderr: StdioPipe::File(sender.stderr()), }, - ); + ) + .await?; worker.run_test_specifier(mode).await } |