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

18 lines (12 loc) 586 B
const data = require("./data/data.json"); describe("userSettings", function () { describe("setTimeFormatFromUserSettings.spec", function () { it("Preparation: Set systemUrl ", async function () { browser.config.params.systemUrl = util.data.decrypt(data.systemUrl); }); it("Execution & Verification", async function () { await util.userSettings.setTimeFormatFromUserSettings(util.data.decrypt(data.username), util.data.decrypt(data.password)); common.assertion.expectDefined(process.env.USER_SETTINGS_TIME_FORMAT); //12 Hour Format }); }); });