e2ed
Version:
E2E testing framework over Playwright
18 lines (17 loc) • 686 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConsoleBackgroundColor = void 0;
/**
* Console (terminal) background style color.
* @internal
*/
var ConsoleBackgroundColor;
(function (ConsoleBackgroundColor) {
ConsoleBackgroundColor["BlackBright"] = "100";
ConsoleBackgroundColor["Green"] = "42";
ConsoleBackgroundColor["GreenBright"] = "102";
ConsoleBackgroundColor["Magenta"] = "45";
ConsoleBackgroundColor["Red"] = "41";
ConsoleBackgroundColor["Yellow"] = "43";
ConsoleBackgroundColor["YellowGreen"] = "48;2;154;205;50";
})(ConsoleBackgroundColor || (exports.ConsoleBackgroundColor = ConsoleBackgroundColor = {}));