Skip to content

Commit e1b31ef

Browse files
authored
test: Avoid sending 'undefined' argument to matchstick (#769)
1 parent de77189 commit e1b31ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ module.exports = {
4646

4747
let binary = new Binary(platform, url, version);
4848
await binary.install(force);
49-
binary.run(datasource);
49+
datasource ? binary.run(datasource) : binary.run();
5050
}
5151
}
5252

0 commit comments

Comments
 (0)