var specs = ['./test/features/BNO/**/billing.feature']; const config: ContourFETConfig = { framework: 'cucumber', specs: specs, stepDefinitions: ['./test/steps/**/*def.ts'], locators: ['./test/pages/**/*.locator.ts'], env: 'dev_2', vr: { autoSaveBaseline: false, compareScreenshot: false, beforeScreenshotPause: 300 }, 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: false, token: 'c48a2978-df24-4227-80db-e998f0ba4b84', endpoint: 'http://reportportal.dev.contournetwork.io/api/v1', project: 'contour-fe', launch: 'Billing test', description: specs.toString(), attributes: [{ key: 'run', value: 'bvt' }] }, logLevel: 'info', tagExpression: 'not @Pending' }; export default config;