From 2a7f5437e698f7d3c5e2396036a71d806e52f155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Thu, 20 Jul 2023 17:05:43 +0200 Subject: [PATCH] test: Move test timeout to `/cli` (no-changelog) (#6712) --- jest.config.js | 1 - packages/cli/jest.config.js | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index e6eb3e16c8..729d2d3a59 100644 --- a/jest.config.js +++ b/jest.config.js @@ -26,7 +26,6 @@ const config = { collectCoverage: true, coverageReporters: [process.env.COVERAGE_REPORT === 'true' ? 'text' : 'text-summary'], collectCoverageFrom: ['src/**/*.ts'], - testTimeout: 10_000, }; if (process.env.CI === 'true') { diff --git a/packages/cli/jest.config.js b/packages/cli/jest.config.js index 8f61a80caa..9cbb4a4f91 100644 --- a/packages/cli/jest.config.js +++ b/packages/cli/jest.config.js @@ -12,4 +12,5 @@ module.exports = { '^@db/(.*)$': '/src/databases/$1', }, coveragePathIgnorePatterns: ['/src/databases/migrations/'], + testTimeout: 10_000, };