Skip to content

Commit

Permalink
Adjusting testing to support coverage creation
Browse files Browse the repository at this point in the history
  • Loading branch information
coobr01 committed Sep 18, 2024
1 parent 0b25d22 commit 289701c
Show file tree
Hide file tree
Showing 4 changed files with 2,896 additions and 122 deletions.
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,14 @@ npm-debug.log
.DS_Store

# Visual Studio 2015/2017 cache/options directory
.vs/
.vs/

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output
13 changes: 13 additions & 0 deletions app/.nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"all": true,
"include": [
"app/**/*.{ts,js}"
],
"exclude": [
"**/node_modules/**",
"**/coverage/**",
"**/epa-template-files/**",
"**/tests/**",
"**/api-docs/**"
]
}
Loading

0 comments on commit 289701c

Please sign in to comment.