Skip to content

Commit 87d11f1

Browse files
cannorincristianoc
authored andcommitted
jscomp/build_tests/zerocycle: assert success
Signed-off-by: Yuta Sato <[email protected]>
1 parent 2d3060e commit 87d11f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

jscomp/build_tests/zerocycle/input.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
var p = require("child_process");
22
var assert = require("assert");
3-
p.spawnSync(`rescript`, { encoding: "utf8", cwd: __dirname });
3+
var out = p.spawnSync(`rescript`, { encoding: "utf8", cwd: __dirname });
4+
assert(out.status == 0)

0 commit comments

Comments
 (0)