Skip to content

Commit e4269ab

Browse files
bacon fixes
1 parent f5aa1cb commit e4269ab

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

test/routing-samples/runner.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ const runTestsOnApp = (app) => {
7171
runner.on('exit', function(code) {
7272
console.log('Test runner exited with code: ' + code);
7373
returnCode = code;
74-
routerApp.stderr.pause();
7574
routerApp.kill(code);
7675
});
7776
runner.on('error', function(err) {

test/routing-samples/wdio.conf.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
*/
1212

1313
/* eslint-disable */
14+
// will load environment vars from testenv file and set on process.env
15+
require('@okta/env').setEnvironmentVarsFromTestEnv(__dirname);
16+
1417

1518
const logLevel = 'warn';
1619
const browserOptions = {
@@ -95,9 +98,10 @@ exports.config = {
9598
// maxInstances can get overwritten per capability. So if you have an in-house Selenium
9699
// grid with only 5 firefox instances available you can make sure that not more than
97100
// 5 instances get started at a time.
98-
maxInstances: 5,
101+
maxInstances: 1,
99102
//
100103
browserName: 'chrome',
104+
'goog:chromeOptions': browserOptions,
101105
acceptInsecureCerts: true
102106
// If outputDir is provided WebdriverIO can capture driver session logs
103107
// it is possible to configure which logTypes to include/exclude.

0 commit comments

Comments
 (0)