forked from bluesky-social/atproto
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvitest.config.ts
More file actions
29 lines (26 loc) · 744 Bytes
/
Copy pathvitest.config.ts
File metadata and controls
29 lines (26 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
coverage: {
provider: 'v8', // or 'istanbul'
exclude: [
'**/dist/**',
'**/node_modules/**',
'**/src/lexicons/**',
'**/tests/**',
],
},
projects: [
'packages/aws',
'packages/lex/*',
'packages/oauth/oauth-client',
'packages/syntax',
'packages/tap',
// The following packages use vitest but require dev-infra to be started &
// stopped between runs, we don't enable it here (when running "pnpm
// test:unit" or the "vitest.explorer" VSCode extension). Use "pnpm test"
// from the package root instead.
// 'packages/bsky',
],
},
})