mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 03:24:59 +02:00
12 lines
394 B
TypeScript
12 lines
394 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
// Unit tests for the coverage pipeline scripts/fixtures only. Scoped tightly so
|
|
// vitest never picks up the Playwright e2e specs under tests/ (those are *.spec.ts
|
|
// run by Playwright, not vitest).
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['scripts/**/*.test.ts', 'fixtures/**/*.test.ts', '*.test.ts'],
|
|
exclude: ['tests/**'],
|
|
},
|
|
});
|