Skip to content

Commit

Permalink
Merge pull request #354 from dreamit-de/vitest-2
Browse files Browse the repository at this point in the history
Adjust vitest config
  • Loading branch information
sgohlke authored Jul 15, 2024
2 parents 420ac1c + c50689e commit ac2e398
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dreamit/graphql-server",
"version": "4.10.1",
"version": "4.10.2",
"description": "A GraphQL server written in NodeJS/Typescript.",
"scripts": {
"build": "tsup-node",
Expand Down
8 changes: 7 additions & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ export default defineConfig({
resolve: { alias: { graphql: 'graphql/index.js' } },
test: {
coverage: {
exclude: ['.stryker-tmp', 'build', 'tests'],
exclude: [
'.stryker-tmp',
'tsup.config.ts',
'vitest.config.ts',
'build',
'tests',
],
provider: 'v8',
reporter: ['text'],
},
Expand Down

0 comments on commit ac2e398

Please sign in to comment.