@sap_oss/wdio-qmate-service
Version:
[](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[](http
13 lines • 394 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.cit = cit;
// Custom step type for Qmate Proxy Service -> will be skipped in REPLAY mode
async function cit(testName, fn) {
if (browser.config.params.qmateProxyService.mode === "REPLAY") {
it.skip(testName, fn);
}
else {
it(testName, fn);
}
}
//# sourceMappingURL=runner.js.map