Skip to content

Commit

Permalink
Run wdio tests sequentially to prevent hanging in firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
smoores-dev committed Sep 16, 2024
1 parent 9b58c9d commit e8a4dda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wdio.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const config: WebdriverIO.Config = {
// and 30 processes will get spawned. The property handles how many capabilities
// from the same test should run tests.
//
maxInstances: 10,
maxInstances: 1,
//
// If you have trouble getting all important capabilities together, check out the
// Sauce Labs platform configurator - a great tool to configure your capabilities:
Expand All @@ -72,7 +72,7 @@ export const config: WebdriverIO.Config = {
// Define all options that are relevant for the WebdriverIO instance here
//
// Level of logging verbosity: trace | debug | info | warn | error | silent
logLevel: "info",
logLevel: "error",
//
// Set specific log levels per logger
// loggers:
Expand Down Expand Up @@ -135,7 +135,7 @@ export const config: WebdriverIO.Config = {
// See the full list at http://mochajs.org/
mochaOpts: {
ui: "bdd",
timeout: 60000,
timeout: 3600000,
},

//
Expand Down

0 comments on commit e8a4dda

Please sign in to comment.