1
0
Fork 0

Handle jasmine the way that it only produces success/fail

This commit is contained in:
Willi Goesgens 2015-03-03 09:23:38 +01:00
parent 24451f3709
commit f152d5c133
1 changed files with 7 additions and 1 deletions

View File

@ -786,7 +786,13 @@ function runInArangosh (options, instanceInfo, file, addArgs) {
catch(x) {
return rc;
}
return result[0];
if (result[0].HasOwnProperty('status')) {
return result[0];
}
else {
// Jasmine tests...
return rc;
}
}
function runArangoshCmd (options, instanceInfo, cmds) {