schlechtenburg/vitest.config.ts

18 lines
382 B
TypeScript
Raw Normal View History

2024-10-08 07:15:26 +00:00
import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
2024-10-09 13:38:26 +00:00
import vueJsx from '@vitejs/plugin-vue-jsx'
2024-10-08 07:15:26 +00:00
export default defineConfig({
2024-10-09 13:38:26 +00:00
plugins: [vue(), vueJsx()],
2024-10-08 07:15:26 +00:00
test: {
browser: {
enabled: true,
name: 'firefox',
2024-10-09 12:43:40 +00:00
headless: true,
2024-10-08 07:15:26 +00:00
provider: 'playwright',
// https://playwright.dev
providerOptions: {},
},
},
})