Skip to content

Commit

Permalink
Merge pull request #54 from ducktors/remove-examples-from-coverage
Browse files Browse the repository at this point in the history
chore: remove examples dir from coverage
  • Loading branch information
alemagio authored Sep 21, 2023
2 parents e92754b + b3f4e8a commit b4a5573
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Empty file modified .husky/pre-commit
100644 → 100755
Empty file.
16 changes: 8 additions & 8 deletions vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { defineConfig } from 'vitest/config'
import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
outputFile: './junit.xml',
outputFile: "./junit.xml",
coverage: {
all: true,
reportsDirectory: 'coverage',
reporter: ['json', 'text-summary'],
provider: 'istanbul',
include: ['**/*.{ts,tsx}'],
exclude: ['template/**/*.{ts,tsx}'],
reportsDirectory: "coverage",
reporter: ["json", "text-summary"],
provider: "istanbul",
include: ["**/*.{ts,tsx}"],
exclude: ["template/**/*.{ts,tsx}", "examples/**/*.{ts,tsx}"],
},
},
})
});

0 comments on commit b4a5573

Please # to comment.