mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com> Co-authored-by: SaulMirone <mirone@SaulMirones-MacBook-Pro.local> Co-authored-by: Christian Hamburger Grøngaard <christianhg@gmail.com> Co-authored-by: Narcis B <leonardssh22@gmail.com> Co-authored-by: patak <matias.capeletto@gmail.com> Co-authored-by: Sachin Raja <sachinraja2349@gmail.com> Co-authored-by: Jake Ginnivan <jake@ginnivan.net> Co-authored-by: Mirone <Saul-Mirone@outlook.com>
12 lines
192 B
TypeScript
12 lines
192 B
TypeScript
/// <reference types="vitest" />
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
test: {
|
|
global: true,
|
|
environment: 'node',
|
|
},
|
|
})
|