diff --git a/js/client/modules/@arangodb/testing.js b/js/client/modules/@arangodb/testing.js index d97adc5f2c..3201864348 100644 --- a/js/client/modules/@arangodb/testing.js +++ b/js/client/modules/@arangodb/testing.js @@ -489,7 +489,7 @@ function unitTest (cases, options) { // running all tests for (let n = 0; n < caselist.length; ++n) { const currentTest = caselist[n]; - var localOptions = _.cloneDeep(options) + var localOptions = _.cloneDeep(options); print(BLUE + '================================================================================'); print('Executing test', currentTest); diff --git a/js/client/modules/@arangodb/testsuites/recovery.js b/js/client/modules/@arangodb/testsuites/recovery.js index eab671b6bb..0597a5e6b6 100644 --- a/js/client/modules/@arangodb/testsuites/recovery.js +++ b/js/client/modules/@arangodb/testsuites/recovery.js @@ -34,6 +34,7 @@ const optionsDocumentation = [ const fs = require('fs'); const pu = require('@arangodb/process-utils'); const tu = require('@arangodb/test-utils'); +const _ = require('lodash'); const toArgv = require('internal').toArgv; @@ -47,7 +48,7 @@ const RESET = require('internal').COLORS.COLOR_RESET; function runArangodRecovery (instanceInfo, options, script, setup, count) { if (!instanceInfo.recoveryArgs) { let tempDir = fs.getTempPath(); - let td = fs.join(tempDir, `${count}`) + let td = fs.join(tempDir, `${count}`); if (setup) { pu.cleanupDBDirectoriesAppend(td); }