File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff 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 ) {
Original file line number Diff line number Diff line change 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
1518const logLevel = 'warn' ;
1619const 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.
You can’t perform that action at this time.
0 commit comments