mirror of https://gitee.com/bigwinds/arangodb
Handle jasmine the way that it only produces success/fail
This commit is contained in:
parent
24451f3709
commit
f152d5c133
|
@ -786,7 +786,13 @@ function runInArangosh (options, instanceInfo, file, addArgs) {
|
||||||
catch(x) {
|
catch(x) {
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
return result[0];
|
if (result[0].HasOwnProperty('status')) {
|
||||||
|
return result[0];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// Jasmine tests...
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function runArangoshCmd (options, instanceInfo, cmds) {
|
function runArangoshCmd (options, instanceInfo, cmds) {
|
||||||
|
|
Loading…
Reference in New Issue