Skip to content

Commit

Permalink
bacon fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredperreault-okta committed Apr 6, 2022
1 parent f5aa1cb commit e4269ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion test/routing-samples/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ const runTestsOnApp = (app) => {
runner.on('exit', function(code) {
console.log('Test runner exited with code: ' + code);
returnCode = code;
routerApp.stderr.pause();
routerApp.kill(code);
});
runner.on('error', function(err) {
Expand Down
6 changes: 5 additions & 1 deletion test/routing-samples/wdio.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
*/

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


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

0 comments on commit e4269ab

Please sign in to comment.