test: check contents of config.json in tests

isekai-main
Barış Soner Uşaklı 3 years ago
parent 17836f2a3a
commit 32f693019b

@ -26,6 +26,15 @@ winston.add(new winston.transports.Console({
),
}));
try {
const fs = require('fs');
const configJSON = fs.readFileSync(path.join(__dirname, '../../config.json'), 'utf-8');
console.log('configJSON', configJSON);
} catch (err) {
console.error(err.stack);
throw err;
}
nconf.file({ file: path.join(__dirname, '../../config.json') });
nconf.defaults({
base_dir: path.join(__dirname, '../..'),

Loading…
Cancel
Save