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) 594 B
const data = require("./data/data.json"); describe("userSettings", function () { describe("getTimeFormatFromUserSettings.spec", function () { it("Preparation: Set systemUrl ", async function () { browser.config.params.systemUrl = util.data.decrypt(data.systemUrl); }); it("Execution", async function () { const userTimeFormat = await util.userSettings.getTimeFormatFromUserSettings(util.data.decrypt(data.username), util.data.decrypt(data.password)); common.assertion.expectDefined(userTimeFormat); //12 Hour Format (Example: 12:05:10 PM) }); }); });