-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvitest.config.ts
More file actions
112 lines (111 loc) · 2.94 KB
/
vitest.config.ts
File metadata and controls
112 lines (111 loc) · 2.94 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import path from 'node:path'
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
globals: true,
setupFiles: ['./tests/setup.ts'],
coverage: {
provider: 'v8',
reporter: ['text', 'html', 'lcov'],
reportsDirectory: './coverage',
exclude: [
'node_modules/**',
'dist/**',
'**/*.d.ts',
'tests/**',
'vitest.config.ts',
'eslint.config.js',
],
},
exclude: ['node_modules', 'dist'],
projects: [
{
test: {
name: 'unit',
include: ['tests/unit/**/*.test.ts'],
setupFiles: ['./tests/setup.ts'],
globals: true,
},
},
{
test: {
name: 'integration',
include: ['tests/integration/**/*.test.ts'],
exclude: ['tests/integration/client/player.test.ts'],
setupFiles: ['./tests/setup.ts'],
globals: true,
},
},
{
test: {
name: 'e2e',
include: ['tests/e2e/**/*.test.ts'],
setupFiles: ['./tests/setup.ts'],
globals: true,
},
},
{
test: {
name: 'benchmark-gold',
include: [
'benchmark/load/command-full.load.bench.ts',
'benchmark/load/net-events-full.load.bench.ts',
'benchmark/load/rpc-processor.load.bench.ts',
'benchmark/load/player-lifecycle.load.bench.ts',
'benchmark/load/tick.load.bench.ts',
'benchmark/load/binary-service.load.bench.ts',
],
setupFiles: ['./tests/setup.ts'],
globals: true,
},
},
{
test: {
name: 'benchmark-startup',
include: ['benchmark/load/bootstrap.load.bench.ts'],
setupFiles: ['./tests/setup.ts'],
globals: true,
},
},
{
test: {
name: 'benchmark-diagnostic',
include: [
'benchmark/load/commands.load.bench.ts',
'benchmark/load/net-events.load.bench.ts',
'benchmark/load/pipeline.load.bench.ts',
'benchmark/load/core-events.load.bench.ts',
'benchmark/load/guards.load.bench.ts',
'benchmark/load/services.load.bench.ts',
'benchmark/load/player-manager.load.bench.ts',
'benchmark/load/throttle.load.bench.ts',
],
setupFiles: ['./tests/setup.ts'],
globals: true,
},
},
{
test: {
name: 'benchmark-soak',
include: ['benchmark/load/stress-test.load.bench.ts'],
setupFiles: ['./tests/setup.ts'],
globals: true,
},
},
],
},
esbuild: {
tsconfigRaw: {
compilerOptions: {
experimentalDecorators: true,
emitDecoratorMetadata: true,
useDefineForClassFields: false,
},
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
})