From 316824bb3047bd99579e81d65fae902d3729c842 Mon Sep 17 00:00:00 2001 From: Ben Furber Date: Thu, 6 Jun 2024 09:48:32 +0100 Subject: [PATCH] test: update jest max test time to 10 seconds --- jest.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.ts b/jest.config.ts index 894f8b416a..a890a1d2a1 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -3,6 +3,7 @@ import type { JestConfigWithTsJest } from 'ts-jest' const config: JestConfigWithTsJest = { preset: 'ts-jest', testEnvironment: 'node', + testTimeout: 10000, } export default config