Skip to content

Commit

Permalink
chore: create code coverage configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
screendriver committed Dec 10, 2022
1 parent 8869197 commit 17d4e90
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .c8rc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"all": true,
"lines": 100,
"functions": 100,
"statements": 100,
"branches": 100,
"instrument": true,
"extension": [".ts"],
"reporter": ["lcov", "text-summary", "clover"],
"reportDir": "./target/coverage",
"tempDirectory": "./target/c8_output",
"include": ["src/**/*"],
"exclude": ["src/index.ts"]
}

0 comments on commit 17d4e90

Please sign in to comment.