You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
375 B

import { defineConfig } from 'vitest/config';
import { commonConfig } from './vitest.config';
export default defineConfig({
test: {
...commonConfig.test,
include: ['components/config-provider/__tests__/image.test.{ts,tsx}'],
globals: true,
setupFiles: ['./tests/setupPuppeteer.ts'],
environment: 'jsdom',
maxThreads: 2,
minThreads: 2,
},
});