Skip to content

Commit c432d70

Browse files
authored
Merge pull request #2 from browserstack/null_callback
do not allow null callbacks
2 parents ebb6e79 + 3c79033 commit c432d70

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/browserstack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ for(var i in config.capabilities){
5151
if (error) return console.log(error.red);
5252
console.log('Connected. Now testing...');
5353

54-
runOnBrowserStack(caps, test, function(){ bs_local.stop(); });
54+
runOnBrowserStack(caps, test, function() { bs_local.stop(function() {}); });
5555
});
5656
}
5757
else {

0 commit comments

Comments
 (0)