mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
import type { CurrentsConfig } from '@currents/playwright';
|
|
|
|
const config: CurrentsConfig = {
|
|
recordKey: process.env.CURRENTS_RECORD_KEY ?? '',
|
|
projectId: process.env.CURRENTS_PROJECT_ID ?? 'I0yzoc',
|
|
};
|
|
|
|
// eslint-disable-next-line import-x/no-default-export
|
|
export default config;
|