vitest.config.mts 406 B

123456789101112131415
  1. import { defineConfig } from 'vitest/config';
  2. import { vendureDashboardPlugin } from './dist/plugin/index.js';
  3. import { pathToFileURL } from 'url';
  4. export default defineConfig({
  5. test: {
  6. globals: true,
  7. environment: 'jsdom',
  8. },
  9. plugins: [
  10. vendureDashboardPlugin({
  11. vendureConfigPath: pathToFileURL('../dev-server/dev-config.ts'),
  12. }) as any,
  13. ],
  14. });