Skip to content

Commit

Permalink
Fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
fdodino committed Nov 13, 2024
1 parent 974e03d commit 4b8b51c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineConfig } from 'vitest/config'
import {svelte} from '@sveltejs/vite-plugin-svelte'
import {svelteTesting} from '@testing-library/svelte/vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
import { svelteTesting } from '@testing-library/svelte/vite'

export default defineConfig({
plugins: [svelte(), svelteTesting()],
Expand All @@ -10,5 +10,8 @@ export default defineConfig({
globals: true,
environment: 'jsdom',
setupFiles: ['./vitest-setup.js'],
}
coverage: {
include: ['src'],
},
},
})

0 comments on commit 4b8b51c

Please sign in to comment.