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

27 lines (22 loc) 600 B
describe("console", function () { describe("log", function () { it("Execution", async function () { await util.console.log("Test log message"); }); }); describe("error", function () { it("Execution", async function () { await util.console.error("Test error message"); }); }); describe("warn", function () { it("Execution", async function () { await util.console.warn("Test warning message"); }); }); describe("info", function () { it("Execution", async function () { await util.console.log("Test info message"); }); }); });