mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
test: working test with TypeScript + vite (using vitest)
This commit is contained in:
39
vitest.config.ts
Normal file
39
vitest.config.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
import { defineConfig } from 'vitest/config';
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
globals: true,
|
||||
mockReset: true,
|
||||
environment: 'jsdom',
|
||||
setupFiles: ['src/test-utils/setup-jest.ts'],
|
||||
alias: [
|
||||
{
|
||||
find: /^~\/(.*)/,
|
||||
replacement: 'src/$1',
|
||||
},
|
||||
],
|
||||
api: {
|
||||
port: 5174, // vite port + 1
|
||||
},
|
||||
coverage: {
|
||||
exclude: [
|
||||
// default rules
|
||||
'coverage/**',
|
||||
'dist/**',
|
||||
'packages/*/test{,s}/**',
|
||||
'**/*.d.ts',
|
||||
'cypress/**',
|
||||
'test{,s}/**',
|
||||
'test{,-*}.{js,cjs,mjs,ts,tsx,jsx}',
|
||||
'**/*{.,-}test.{js,cjs,mjs,ts,tsx,jsx}',
|
||||
'**/*{.,-}spec.{js,cjs,mjs,ts,tsx,jsx}',
|
||||
'**/__tests__/**',
|
||||
'**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*',
|
||||
'**/.{eslint,mocha,prettier}rc.{js,cjs,yml}',
|
||||
|
||||
// custom ones
|
||||
'src/test-utils/**',
|
||||
],
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user