var specs = ['./test/features/amendment/workflow/**.feature']; const config: ContourFETConfig = { framework: 'cucumber', specs: specs, stepDefinitions: ['./test/steps/**/*def.ts'], locators: ['./test/pages/**/*.locator.ts'], env: 'dev_1', vr: { autoSaveBaseline: true, compareScreenshot: true, beforeScreenshotPause: 500 }, runType: 'selenium-standalone', standAloneOptions: { installArgs: { drivers: { chrome: { version: '94.0.4606.41' } } }, // drivers to install args: { drivers: { chrome: { version: '94.0.4606.41' } } // drivers to use } }, reportPortal: { enabled: true, token: 'c14bd8ad-fd3f-4880-93c7-14545f5e949f', endpoint: 'http://reportportal.dev.contournetwork.io/api/v1', project: 'contour-fe', launch: 'AMM-Workflow', description: specs.toString(), autoAttachScreenshots: true, attributes: [{ key: 'run', value: 'ammWorkflow' }] }, logLevel: 'info', tagExpression: 'not @Pending' }; export default config;