-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvitest.config.ts
52 lines (41 loc) · 1.21 KB
/
vitest.config.ts
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { defineConfig as configure } from 'vitest/config';
export default configure({
test: {
globals: true,
environment: 'node',
passWithNoTests: true,
include: [
'packages/**/*.test.{js,jsx,ts,tsx}',
],
coverage: {
all: true,
clean: true,
skipFull: true,
include: [
'packages/**/*',
],
exclude: [
'packages/**/examples',
'packages/**/*.proof.*',
'packages/**/*.test.ts',
'packages/index.ts',
'packages/phasma/src/index.ts',
'packages/create-phasma/src/index.ts',
// Package forwarding files are just type exports.
'packages/@phasma/handler/src/index.ts',
'packages/@phasma/handler-aws/src/index.ts',
// Package component directories are intended to be only for types.
'packages/@phasma/handler/src/component',
'packages/@phasma/handler-aws/src/component',
// Events file should only ever be types.
'packages/@phasma/handler-aws/src/definition/events.ts',
],
reportsDirectory: 'build/coverage',
reporter: ['text', 'html'],
lines: 80,
functions: 80,
branches: 80,
statements: 80,
},
},
});