1
0
Fork 0

styleguide cleanup

This commit is contained in:
Wilfried Goesgens 2017-05-03 14:03:07 +02:00
parent fd5e1c0607
commit b10f5496d6
5 changed files with 4 additions and 8 deletions

View File

@ -32,7 +32,6 @@ const optionsDocumentation = [
];
const tu = require('@arangodb/test-utils');
const pu = require('@arangodb/process-utils');
// //////////////////////////////////////////////////////////////////////////////
// / @brief agency tests

View File

@ -35,7 +35,6 @@ const optionsDocumentation = [
const pu = require('@arangodb/process-utils');
const tu = require('@arangodb/test-utils');
const fs = require('fs');
const yaml = require('js-yaml');
// const BLUE = require('internal').COLORS.COLOR_BLUE;

View File

@ -1,5 +1,4 @@
/* jshint strict: false, sub: true */
/* global print */
'use strict';
// //////////////////////////////////////////////////////////////////////////////
@ -63,7 +62,7 @@ function fail (options) {
}
}
};
};
}
function setup (testFns, defaultFns, opts, fnDocs, optionsDoc) {
testFns['fail'] = fail;

View File

@ -77,9 +77,9 @@ function runArangodRecovery (instanceInfo, options, script, setup) {
}
// enable development debugging if extremeVerbosity is set
if (options.extremeVerbosity === true){
if (options.extremeVerbosity === true) {
argv = argv.concat([
'--log.level', 'development=info',
'--log.level', 'development=info'
]);
}
@ -100,7 +100,7 @@ function recovery (options) {
let results = {};
if (!global.ARANGODB_CLIENT_VERSION(true)['failure-tests'] ||
global.ARANGODB_CLIENT_VERSION(true)['failure-tests'] === "false") {
global.ARANGODB_CLIENT_VERSION(true)['failure-tests'] === 'false') {
results.recovery = {
status: false,
message: 'failure-tests not enabled. please recompile with -DUSE_FAILURE_TESTS=On'

View File

@ -33,7 +33,6 @@ const functionsDocumentation = {
const optionsDocumentation = [
];
const pu = require('@arangodb/process-utils');
const tu = require('@arangodb/test-utils');
// //////////////////////////////////////////////////////////////////////////////