From e8a4dda26202b547ba89087adc480c302fe77c7e Mon Sep 17 00:00:00 2001 From: Shane Friedman Date: Mon, 16 Sep 2024 14:57:50 -0400 Subject: [PATCH] Run wdio tests sequentially to prevent hanging in firefox --- wdio.conf.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wdio.conf.ts b/wdio.conf.ts index df01a36..6f1ccba 100644 --- a/wdio.conf.ts +++ b/wdio.conf.ts @@ -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: @@ -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: @@ -135,7 +135,7 @@ export const config: WebdriverIO.Config = { // See the full list at http://mochajs.org/ mochaOpts: { ui: "bdd", - timeout: 60000, + timeout: 3600000, }, //