From ace72d8787653a63387df1bcb8fc66d061357ce0 Mon Sep 17 00:00:00 2001 From: Thijs Louisse Date: Fri, 29 Mar 2024 00:54:04 +0100 Subject: [PATCH] chore: put test coverage tresholds on 95% --- web-test-runner.config.mjs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/web-test-runner.config.mjs b/web-test-runner.config.mjs index dd0dc7357..fe6873a7b 100644 --- a/web-test-runner.config.mjs +++ b/web-test-runner.config.mjs @@ -22,8 +22,8 @@ const packages = fs * @type {import('@web/test-runner').TestRunnerConfig['testRunnerHtml']} * */ -const testRunnerHtml = (testRunnerImport) => -` +const testRunnerHtml = testRunnerImport => + ` @@ -38,10 +38,10 @@ export default { report: true, reportDir: 'coverage', threshold: { - statements: 90, - branches: 65, - functions: 80, - lines: 90, + statements: 95, + functions: 95, + branches: 95, + lines: 95, }, }, testFramework: {