Update e2e tests BASE_MODULE resolution

This commit is contained in:
Felipe Knorr Kuhn
2021-10-27 20:32:42 -07:00
parent 837992f7ea
commit 5139ffb4df
8 changed files with 70 additions and 44 deletions

View File

@@ -1 +1,14 @@
module.exports = (on, config) => {}
const fs = require('fs');
const CONFIG_FILE = 'mempool-frontend-config.json';
module.exports = (on, config) => {
if (fs.existsSync(CONFIG_FILE)) {
let contents = JSON.parse(fs.readFileSync(CONFIG_FILE, 'utf8'));
console.log(contents);
config.env.BASE_MODULE = contents.BASE_MODULE;
} else {
config.env.BASE_MODULE = 'mempool';
}
return config;
}