ぼざクリタグ広場 https://hub.nizika.monster
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.
 
 
 
 

12 lines
264 B

  1. import { defineConfig, mergeConfig } from 'vitest/config'
  2. import viteConfig from './vite.config'
  3. export default mergeConfig (
  4. viteConfig,
  5. defineConfig ({
  6. test: { environment: 'jsdom',
  7. setupFiles: './src/test/setup.ts',
  8. globals: false } }))