UNPKG

e2ed

Version:

E2E testing framework over Playwright

15 lines (14 loc) 682 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.okMessage = exports.failMessage = void 0; const getMessageWithBackgroundColor_1 = require("./getMessageWithBackgroundColor"); /** * Fail message with red background color (for printing in the console). * @internal */ exports.failMessage = (0, getMessageWithBackgroundColor_1.getMessageWithBackgroundColor)('[FAIL]', "41" /* ConsoleBackgroundColor.Red */); /** * Ok message with bright green background color (for printing in the console). * @internal */ exports.okMessage = (0, getMessageWithBackgroundColor_1.getMessageWithBackgroundColor)('[OK]', "42" /* ConsoleBackgroundColor.Green */);