mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 11:35:03 +02:00
12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
import codspeedPlugin from '@codspeed/vitest-plugin';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
plugins: [process.env.CODSPEED ? codspeedPlugin() : null].filter(Boolean),
|
|
test: {
|
|
benchmark: {
|
|
include: ['benchmarks/**/*.bench.ts'],
|
|
},
|
|
},
|
|
});
|