mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 03:24:59 +02:00
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
import { mergeConfig } from 'vite';
|
|
|
|
import { baseConfig } from './vitest.config.base';
|
|
|
|
export default mergeConfig(baseConfig, {
|
|
test: {
|
|
include: ['src/**/*.{test,spec}.ts', 'test/unit/**/*.{test,spec}.ts'],
|
|
exclude: ['**/*.integration.test.ts'],
|
|
},
|
|
});
|