Skip to content

Commit e18f921

Browse files
committed
fix tests
1 parent a495167 commit e18f921

File tree

1 file changed

+1
-6
lines changed
  • bindings/tmc-langs-node/src

1 file changed

+1
-6
lines changed

bindings/tmc-langs-node/src/lib.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -944,12 +944,7 @@ mod test {
944944
format!("http://{}", server_address()),
945945
);
946946

947-
#[cfg(windows)]
948-
let npm = "npm.exe";
949-
#[cfg(not(windows))]
950-
let npm = "npm";
951-
952-
let s = Command::new(npm)
947+
let s = Command::new("npm")
953948
.args(&["run", "jest"])
954949
.output()
955950
.expect("running jest failed");

0 commit comments

Comments
 (0)