From d766d16d2a383f19d8c887fb88967ea4b6aac143 Mon Sep 17 00:00:00 2001
From: David Dorchies <david.dorchies@inrae.fr>
Date: Thu, 11 Jan 2024 15:38:00 +0000
Subject: [PATCH] fix(e2e): raise Jasmine defaultTimeoutInterval

Refs #648
---
 wdio.conf.ts | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/wdio.conf.ts b/wdio.conf.ts
index 82a6e07c0..4a49195dd 100644
--- a/wdio.conf.ts
+++ b/wdio.conf.ts
@@ -165,14 +165,11 @@ export const config: Options.Testrunner = {
     // The only one supported by default is 'dot'
     // see also: https://webdriver.io/docs/dot-reporter
     reporters: ['spec'],
-
-
-
     //
     // Options to be passed to Jasmine.
     jasmineOpts: {
         // Jasmine default timeout
-        defaultTimeoutInterval: 60000,
+        defaultTimeoutInterval: 180000,
         //
         // The Jasmine framework allows interception of each assertion in order to log the state of the application
         // or website depending on the result. For example, it is pretty handy to take a screenshot every time
-- 
GitLab