From 4da5e8b45d0558a0ca5a56db25b1f74fe0a12c60 Mon Sep 17 00:00:00 2001 From: canonbrother Date: Wed, 10 Apr 2024 15:25:38 +0800 Subject: [PATCH] jest extend timeout --- jest.config.js | 2 +- jest.sanity.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jest.config.js b/jest.config.js index a253244041..2c628b48ca 100644 --- a/jest.config.js +++ b/jest.config.js @@ -11,7 +11,7 @@ module.exports = { }, verbose: true, clearMocks: true, - testTimeout: 600000, + testTimeout: 900000, testPathIgnorePatterns: [ '__sanity__' ], diff --git a/jest.sanity.js b/jest.sanity.js index 89735944d9..a6305e0da8 100644 --- a/jest.sanity.js +++ b/jest.sanity.js @@ -5,5 +5,5 @@ module.exports = { testRegex: '((\\.|/)(sanity))\\.ts$', testPathIgnorePatterns: [], globalSetup: './jest.sanity.setup.js', - testTimeout: 600000 + testTimeout: 900000 }