From 32c6262586c99a8ef31d06801d1da9a8421e1c04 Mon Sep 17 00:00:00 2001 From: Max Neunhoeffer Date: Mon, 8 Dec 2014 11:27:19 +0100 Subject: [PATCH] Switch off importing test in the cluster because feature not yet implemented. --- js/server/modules/org/arangodb/testing.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) &&