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

19 lines (16 loc) 557 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, { baseUrl: `${BASE_URL}/test-resources/sap/m/demokit/cart/webapp/index.html?sap-ui-theme=sap_horizon`, specs: [ path.resolve(__dirname, "navigateToUrlAndClick.spec.js") ], beforeSession: () => { simulateRestartInWatchMode(); } }); function simulateRestartInWatchMode() { browser = undefined; }