var specs = ['./test/features/dp/dpAttachment.feature']; const config: ContourFETConfig = { framework: 'cucumber', specFileRetries: 2, specs: specs, stepDefinitions: ['./test/steps/**/*def.ts'], locators: ['./test/pages/**/*.locator.ts'], env: 'dev_3', vr: { autoSaveBaseline: false, compareScreenshot: true, beforeScreenshotPause: 500 }, runType: 'selenium-standalone', standAloneOptions: { installArgs: { drivers: { chrome: { version: '88.0.4324.96' } } }, // drivers to install args: { drivers: { chrome: { version: '88.0.4324.96' } } // drivers to use } }, reportPortal: { enabled: true, token: 'c14bd8ad-fd3f-4880-93c7-14545f5e949f', endpoint: 'http://reportportal.dev.contournetwork.io/api/v1', project: 'contour-fe', launch: 'VTX-5175 DP Attachments', description: specs.toString(), attributes: [{ key: 'run', value: 'e2e' }] }, logLevel: 'trace', tagExpression: 'not @Pending' }; export default config;