More integration test cleanup

pull/1017/head
Mikunj 5 years ago
parent 555db5e83b
commit 5c36b75723

@ -1,4 +0,0 @@
{
"storageProfile": "test-integration-session-2",
"localServerPort": "8082"
}

@ -1,5 +1,4 @@
{
"storageProfile": "test-integration-session",
"openDevTools": false,
"updatesEnabled": false
}

@ -50,17 +50,28 @@ module.exports = {
return new Promise(resolve => setTimeout(resolve, ms));
},
async startApp(env = 'test-integration-session') {
const app1 = new Application({
path: path.join(__dirname, '..', 'node_modules', '.bin', 'electron'),
args: ['.'],
env: {
NODE_ENV: env,
async startApp(environment = 'test-integration-session') {
const env = {
NODE_ENV: environment,
USE_STUBBED_NETWORK: true,
ELECTRON_ENABLE_LOGGING: true,
ELECTRON_ENABLE_STACK_DUMPING: true,
ELECTRON_DISABLE_SANDBOX: 1,
},
};
// If it's specifically integration environment then we should extract the instance from it.
// This will still allow its storage to be found in Session-{environment}
// It just makes it easier to manage the config file
if (environment.includes('test-integration-')) {
const instance = environment.replace('test-integration-', '');
env.NODE_ENV = 'test-integration';
env.NODE_APP_INSTANCE = instance;
}
const app1 = new Application({
path: path.join(__dirname, '..', 'node_modules', '.bin', 'electron'),
args: ['.'],
env,
startTimeout: 10000,
requireName: 'electronRequire',
// chromeDriverLogPath: '../chromedriverlog.txt',

Loading…
Cancel
Save