From e68ddd8fdc91f786bad1c1de134f97b957c38be7 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Wed, 6 Jan 2021 19:16:31 +0100 Subject: [PATCH] E2E tests: Increase timeout & set concurrency to 1 For some reason Jest sometimes times out when running in GitHub Actions. This tries to mitigate that error. Signed-off-by: David Mehren --- jest-e2e.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jest-e2e.json b/jest-e2e.json index 8169517cb..20f0c2312 100644 --- a/jest-e2e.json +++ b/jest-e2e.json @@ -12,5 +12,7 @@ "transform": { "^.+\\.(t|j)s$": "ts-jest" }, - "coverageDirectory": "./coverage-e2e" + "coverageDirectory": "./coverage-e2e", + "testTimeout": 10000, + "maxConcurrency": 1 }