diff --git a/js/server/modules/org/arangodb/testing.js b/js/server/modules/org/arangodb/testing.js index 1af035e4b5..368bc1796f 100644 --- a/js/server/modules/org/arangodb/testing.js +++ b/js/server/modules/org/arangodb/testing.js @@ -1046,7 +1046,8 @@ var impTodo = [ testFuncs.importing = function (options) { if (options.cluster) { print("Skipped because of cluster."); - return {"ok":true, "skipped":0}; + return {"importing": {"status":true, "skipped":true, + "message": "skipped because of cluster"}}; } var instanceInfo = startInstance("tcp", options, [ ], "importing"); @@ -1488,6 +1489,7 @@ function UnitTest (which, options) { else { var r; results[which] = r = testFuncs[which](options); + print("Testresult:", r); ok = true; for (i in r) { if (r.hasOwnProperty(i) &&