storybook/code/renderers/vue3/vitest.config.ts
2024-03-18 12:21:10 +01:00

17 lines
510 B
TypeScript

/* eslint-disable import/no-extraneous-dependencies */
import { defineConfig, mergeConfig } from 'vitest/config';
import vue from '@vitejs/plugin-vue';
import { vitestCommonConfig } from '../../vitest.workspace';
export default mergeConfig(
vitestCommonConfig,
// @ts-expect-error seems like there's a type mismatch in the vue plugin
defineConfig({
test: {
environment: 'jsdom',
},
// @ts-expect-error seems like there's a type mismatch in the vue plugin
plugins: [vue()],
})
);