mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-27 06:45:26 +02:00
15 lines
380 B
TypeScript
15 lines
380 B
TypeScript
import type { CurrentsConfig } from '@currents/playwright';
|
|
|
|
const config: CurrentsConfig = {
|
|
recordKey: process.env.CURRENTS_RECORD_KEY ?? '',
|
|
projectId: process.env.CURRENTS_PROJECT_ID ?? 'I0yzoc',
|
|
...(process.env.BUILD_WITH_COVERAGE === 'true' && {
|
|
coverage: {
|
|
projects: true,
|
|
},
|
|
}),
|
|
};
|
|
|
|
// eslint-disable-next-line import-x/no-default-export
|
|
export default config;
|