Skip to content

Commit

Permalink
Test coverage update
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJaredWilcurt committed Aug 25, 2024
1 parent 3264e97 commit 8136ac7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions server.cjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/* c8 ignore start */
const express = require('express');

const app = express();
app.use(express.static('./dist-vue'));
app.listen(4185);
/* c8 ignore stop */
3 changes: 2 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ export default defineConfig({
coverage: {
exclude: [
...(configDefaults?.coverage?.exclude || []),
'**/dist-vue/**'
'**/dist-vue/**',
'./server.cjs'
],
reportsDirectory: './tests/unit/coverage'
},
Expand Down

0 comments on commit 8136ac7

Please sign in to comment.