From 646df20d709af5747cdc1a3c6528d9719e8c9e98 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 29 Mar 2018 12:26:42 -0700 Subject: [PATCH] Fix a typo when running commands --- crates/test-support/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/test-support/src/lib.rs b/crates/test-support/src/lib.rs index 2e6fdb69b..ca20e94ef 100644 --- a/crates/test-support/src/lib.rs +++ b/crates/test-support/src/lib.rs @@ -232,7 +232,7 @@ impl Project { Command::new("yarn") }; cmd.arg("webpack").current_dir(&root); - run(&mut cmd, "node"); + run(&mut cmd, "yarn"); let mut cmd = Command::new("node"); cmd.arg(root.join("bundle.js"))