n8n/packages/testing/playwright/nyc.config.ts
2025-10-01 14:34:55 +01:00

20 lines
394 B
TypeScript

const config = {
reporter: ['html'],
reportDir: 'coverage',
tempDir: '.nyc_output',
include: [
'../../../packages/frontend/editor-ui/src/**/*.{js,ts,vue}',
'../../../packages/frontend/editor-ui/dist/**/*.{js,ts}',
],
exclude: [
'**/*.test.{js,ts}',
'**/*.spec.{js,ts}',
'**/node_modules/**',
'**/coverage/**',
'**/.nyc_output/**',
],
sourceMap: true,
};
export = config;