@sap_oss/wdio-qmate-service
Version:
[](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[](http
20 lines (17 loc) • 464 B
JavaScript
const path = require("path");
const merge = require("deepmerge");
const staticServerConfig = require("./staticServerConfig.js");
exports.config = merge(staticServerConfig.config, {
params: {
logUI5Version: false,
auth: {
formType: "fiori-form",
username: "PURCHASER",
password: "super-duper-sensitive-pw"
}
},
baseUrl: "http://localhost:34005/fiori.html",
specs: [
path.resolve(__dirname, "specs/fiori.spec.js")
]
});