Run rustfmt

This commit is contained in:
Alex Crichton
2020-01-07 08:16:25 -08:00
parent 93fedf85bf
commit 6c27376ac2
7 changed files with 27 additions and 15 deletions

View File

@@ -54,10 +54,13 @@ fn runtest(test: &Path) -> Result<()> {
.arg("--no-typescript");
exec(&mut bindgen)?;
exec(Command::new("node")
.arg("--experimental-wasm-anyref")
.arg("--experimental-wasm-mv")
.arg(&js).env("NODE_PATH", td.path()))?;
exec(
Command::new("node")
.arg("--experimental-wasm-anyref")
.arg("--experimental-wasm-mv")
.arg(&js)
.env("NODE_PATH", td.path()),
)?;
Ok(())
}