mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
13 lines
327 B
TypeScript
13 lines
327 B
TypeScript
import type { CurrentsConfig } from '@currents/playwright';
|
|
|
|
const config: CurrentsConfig = {
|
|
recordKey: process.env.CURRENTS_RECORD_KEY ?? '',
|
|
projectId: process.env.CURRENTS_PROJECT_ID ?? 'LRxcNt',
|
|
coverage: {
|
|
projects: ['coverage'],
|
|
},
|
|
};
|
|
|
|
// eslint-disable-next-line import-x/no-default-export
|
|
export default config;
|