diff --git a/js/client/modules/@arangodb/testsuites/rspec.js b/js/client/modules/@arangodb/testsuites/rspec.js index 476f81ba02..144f67ba79 100644 --- a/js/client/modules/@arangodb/testsuites/rspec.js +++ b/js/client/modules/@arangodb/testsuites/rspec.js @@ -82,6 +82,8 @@ function httpReplication (options) { let testCases = tu.scanTestPaths(testPaths.http_replication); + testCases = tu.splitBuckets(options, testCases); + return tu.performTests(opts, testCases, 'http_replication', tu.runInRSpec); } @@ -97,6 +99,8 @@ function httpServer (options) { let testCases = tu.scanTestPaths(testPaths.http_server); + testCases = tu.splitBuckets(options, testCases); + return tu.performTests(opts, testCases, 'http_server', tu.runInRSpec); } @@ -121,6 +125,8 @@ function sslServer (options) { let testCases = tu.scanTestPaths(testPaths.ssl_server); + testCases = tu.splitBuckets(options, testCases); + return tu.performTests(opts, testCases, 'ssl_server', tu.runInRSpec); }