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

30 lines (26 loc) 819 B
const path = require("path"); const merge = require("deepmerge"); const profile = require("../../../helper/configurations/chrome.conf"); exports.config = merge(profile.config, { maxInstances: 3, bail: 1, baseUrl: "http://localhost:34099/ui", services: [ [ "static-server", { port: 34099, folders: [ { mount: "/ui", path: path.resolve(__dirname, "./website/main.html") } ] } ] ], specs: [path.resolve(__dirname, "navigateToApplication.spec.js"), path.resolve(__dirname, "navigateToApplicationAndRetry.spec.js"), path.resolve(__dirname, "navigateToApplicationWithQueryParams.spec.js"), path.resolve(__dirname, "navigateToApplicationWithQueryParamsAndRetry.spec.js")], mochaOpts: { timeout: 2000000 } });