From 5847523ac542d93a952e48f4101f023463433d19 Mon Sep 17 00:00:00 2001
From: Christoph Reiter <reiter.christoph@gmail.com>
Date: Mon, 22 Feb 2021 11:16:40 +0100
Subject: [PATCH] Increate the mocha test timeout in CI

The CI server can be slow from time to time, give it more time
---
 karma.common.conf.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/karma.common.conf.js b/karma.common.conf.js
index 9b2d58a3..440ddc44 100644
--- a/karma.common.conf.js
+++ b/karma.common.conf.js
@@ -5,6 +5,7 @@ module.exports = function(config) {
       client: {
         mocha: {
           ui: 'tdd',
+          timeout: 2000 * (process.env.CI === undefined ? 1 : 10)
         },
       },
       files: [
-- 
GitLab