From fa12f72ea1b7da76bb3121c59c2175cf09710a12 Mon Sep 17 00:00:00 2001 From: Ondra Urban Date: Wed, 23 Jun 2021 22:02:28 +0200 Subject: [PATCH] chore: increase test timeout to give integration tests time --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 6a8f9a3..cc4431a 100644 --- a/jest.config.js +++ b/jest.config.js @@ -6,5 +6,5 @@ module.exports = { rootDir: path.join(__dirname, './'), testMatch: ['**/?(*.)+(spec|test).[tj]s?(x)'], setupFilesAfterEnv: ['jest-extended'], - testTimeout: 10e3, + testTimeout: 30e3, };