schlechtenburg/vitest.config.ts

16 lines
306 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'
export default defineConfig({
plugins: [vue()],
test: {
browser: {
enabled: true,
name: 'firefox',
provider: 'playwright',
// https://playwright.dev
providerOptions: {},
},
},
})