open-design/e2e/vitest.config.ts

15 lines
335 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vitest/config';
import { fileURLToPath } from 'node:url';
export default defineConfig({
resolve: {
alias: {
'@': fileURLToPath(new URL('./lib', import.meta.url)),
},
},
test: {
environment: 'node',
include: ['specs/**/*.spec.ts', 'tests/**/*.test.ts'],
},
});