mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 11:35:03 +02:00
12 lines
423 B
TypeScript
12 lines
423 B
TypeScript
import type { CurrentsConfig } from '@currents/playwright';
|
|
|
|
const config: CurrentsConfig = {
|
|
recordKey: process.env.CURRENTS_RECORD_KEY ?? '',
|
|
projectId: process.env.CURRENTS_PROJECT_ID ?? 'nHHLA5',
|
|
// Coverage is collected via browser-native V8 (fixtures/v8-coverage.ts +
|
|
// monocart-coverage-reports), not Currents' istanbul fixture.
|
|
};
|
|
|
|
// eslint-disable-next-line import-x/no-default-export
|
|
export default config;
|