-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathvitest.config.mts
More file actions
39 lines (38 loc) · 920 Bytes
/
vitest.config.mts
File metadata and controls
39 lines (38 loc) · 920 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
30
31
32
33
34
35
36
37
38
39
import { join } from 'path';
import { defineConfig } from 'vitest/config';
import { TEST_INITIAL_URL } from './tests/testConstants';
/// <reference types="@vitest/browser/context" />
export default defineConfig({
resolve: {
alias: {
'@ant-design/pro-components': join(process.cwd(), './src'),
},
},
test: {
setupFiles: ['./tests/setupTests.ts'],
environment: 'happy-dom',
environmentOptions: {
happyDOM: {
url: TEST_INITIAL_URL,
},
},
server: {
deps: {
inline: true,
},
},
coverage: {
provider: 'istanbul',
include: ['src/**/*.{ts,tsx}'],
exclude: [
'src/**/*.d.ts',
'src/card/components/TabPane/index.tsx',
'src/**/typing.ts',
'src/**/demos/**',
'src/utils/isDeepEqualReact/*.{ts,tsx}',
],
},
testTimeout: 600_0000, // 60 seconds
globals: true,
},
});