From 0a1adfc2a2d13418a5642629a1b31a970be70566 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Tue, 10 Mar 2026 12:47:08 +0800 Subject: [PATCH] config: update coverage thresholds to 35% --- jest.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jest.config.js b/jest.config.js index 7651ca9..26073e9 100644 --- a/jest.config.js +++ b/jest.config.js @@ -11,10 +11,10 @@ module.exports = { ], coverageThreshold: { global: { - branches: 20, - functions: 25, - lines: 25, - statements: 25, + branches: 30, + functions: 35, + lines: 35, + statements: 35, }, }, coverageReporters: ['text', 'lcov', 'html', 'json'],