mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
/* eslint-disable import-x/no-default-export */
|
|
export default async () => {
|
|
const { createVitestConfig } = await import('@n8n/vitest-config/node');
|
|
|
|
return createVitestConfig({
|
|
include: ['test/**/*.test.ts'],
|
|
});
|
|
};
|