@sap_oss/wdio-qmate-service
Version:
[](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[](http
22 lines (18 loc) • 839 B
JavaScript
const path = require("path");
const merge = require("deepmerge");
const profile = require("../../../helper/configurations/chrome.headless.conf");
exports.config = merge(profile.config, {
maxInstances: 6,
specFileRetries: 2,
baseUrl: "https://sapui5.hana.ondemand.com/1.96.27/#/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")
]
});