UNPKG

@sap_oss/wdio-qmate-service

Version:

[![REUSE status](https://api.reuse.software/badge/github.com/SAP/wdio-qmate-service)](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[![Node.js CI](https://github.com/SAP/wdio-qmate-service/actions/workflows/node.js.yml/badge.svg)](http

23 lines (19 loc) 878 B
const path = require("path"); const merge = require("deepmerge"); const profile = require("../../../helper/configurations/chrome.headless.conf"); const { BASE_URL } = require("../../../../src/reuse/constants.ts"); exports.config = merge(profile.config, { maxInstances: 6, specFileRetries: 2, baseUrl: `${BASE_URL}/#/entity/sap.m.UploadCollection/sample/sap.m.sample.UploadCollection`, specs: [ path.resolve(__dirname, "pdfParser.spec.js"), path.resolve(__dirname, "getExcelData.spec.js"), path.resolve(__dirname, "findFilePathRecursively.spec.js"), path.resolve(__dirname, "getXmlData.spec.js"), path.resolve(__dirname, "getAttributeValuesFromJson.spec.js"), path.resolve(__dirname, "getTextData.spec.js"), path.resolve(__dirname, "expectTextDataToContain.spec.js"), path.resolve(__dirname, "getFileNamesByExtensions.spec.js") ] });