mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 19:45:09 +02:00
8 lines
263 B
TypeScript
8 lines
263 B
TypeScript
import { createVitestConfig } from '@n8n/vitest-config/node';
|
|
|
|
export default createVitestConfig({
|
|
// The n8n root jest.config sets `restoreMocks: true`, and the test files rely on it.
|
|
restoreMocks: true,
|
|
globalSetup: ['./scripts/vitest-global-setup.ts'],
|
|
});
|