forked from Tencent/tdesign-mobile-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vitest.config.mjs
39 lines (36 loc) · 1.3 KB
/
vitest.config.mjs
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 { defineConfig } from 'vitest/config';
import path from 'path';
import { mergeConfig } from 'vite';
import viteConfig from './site/vite.config';
const testSnap = process.env.NODE_ENV === 'test-snap';
export default mergeConfig(
viteConfig({ mode: 'preview' }),
defineConfig({
test: {
include:
/**
* 快照涵盖 `__test__/*.test.jsx`
* 生成demo测试文件: npm run test:demo
* 生成快照:npm run test:snap || npm run test:snap-update
*
* 测试用例检测 && GUI && 覆盖率报告,仅涵盖 `__test__/index.test.jsx`
* 单测: npm run test:unit
* 覆盖率报告: npm run test:unit-coverage
* GUI:npm run test:unit-gui
*/
[`src/**/__test__/${testSnap ? 'demo' : 'index'}.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}`],
globals: true,
environment: 'jsdom',
testTimeout: 5000,
setupFiles: path.resolve(__dirname, `./scripts/test/${testSnap ? 'snap-' : ''}setup.js`),
transformMode: {
web: [/\.[jt]sx$/],
},
coverage: {
reporter: ['text', 'json', 'html'],
reportsDirectory: 'test/unit/coverage',
exclude: ['src/**.{js,ts}', 'src/_common/**', 'src/shared/**', 'src/**/{__test__,demos,style}/**'],
},
},
}),
);