Skip to content

Commit

Permalink
chore: put test coverage tresholds on 95%
Browse files Browse the repository at this point in the history
  • Loading branch information
tlouisse committed Apr 2, 2024
1 parent f0333bb commit ace72d8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions web-test-runner.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const packages = fs
* @type {import('@web/test-runner').TestRunnerConfig['testRunnerHtml']}
*
*/
const testRunnerHtml = (testRunnerImport) =>
`
const testRunnerHtml = testRunnerImport =>
`
<html>
<head>
<script src="/node_modules/@webcomponents/scoped-custom-element-registry/scoped-custom-element-registry.min.js"></script>
Expand All @@ -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: {
Expand Down

0 comments on commit ace72d8

Please sign in to comment.