use of path.join everywhere

This commit is contained in:
Clément GOUIN
2019-06-20 10:40:48 +02:00
parent fe6cca6453
commit 07dd06a338
8 changed files with 77 additions and 76 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
/* jshint -W117 */
const fs = require('fs');
const configFile = './config.json';
const tmpConfigFile = './config.temp.json';
const configFile = 'config.json';
const tmpConfigFile = 'config.temp.json';
beforeAll(() => {
if (fs.existsSync(configFile)) {