mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
* fix: drop support for Vite 2 * chore: lock * chore: fix lit test * chore: fix lit test Co-authored-by: Vladimir Sheremet <sleuths.slews0s@icloud.com>
12 lines
194 B
TypeScript
12 lines
194 B
TypeScript
/// <reference types="vitest" />
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
},
|
|
})
|