selenium: Replace ES5 one-var assignments with const/let per line
[lhc/web/wiklou.git] / tests / selenium / wdio.conf.js
index 932a8aa..fa65515 100644 (file)
@@ -1,7 +1,8 @@
-const fs = require( 'fs' ),
-       path = require( 'path' ),
-       startChromedriver = !process.argv.includes( '--skip-chromedriver' ),
-       logPath = process.env.LOG_DIR || path.join( __dirname, '/log' );
+/* eslint-disable no-console */
+const fs = require( 'fs' );
+const path = require( 'path' );
+const startChromedriver = !process.argv.includes( '--skip-chromedriver' );
+const logPath = process.env.LOG_DIR || path.join( __dirname, '/log' );
 
 let ffmpeg;