Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 778111d

Browse files
committed
Fix tests not running becuase status is undefined
1 parent eb8eef6 commit 778111d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Diff for: script/test-native.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,5 @@ switch (args[0]) {
5252
}
5353

5454
function run(command, args = [], options = {stdio: 'inherit'}) {
55-
const {status} = spawnSync(command, args, options)
56-
if (status !== 0) process.exit(status)
57-
}
55+
spawnSync(command, args, options)
56+
}

0 commit comments

Comments
 (0)