UNPKG

magnitude-test

Version:

A TypeScript client for running automated UI tests through the Magnitude testing platform

20 lines (19 loc) 749 B
// --- ANSI Escape Codes --- export const ANSI_RESET = '\x1b[0m'; export const ANSI_GREEN = '\x1b[32m'; //export const ANSI_GREEN = '\x1b[32m'; export const ANSI_BRIGHT_BLUE = '\x1b[94m'; export const ANSI_GRAY = '\x1b[90m'; export const ANSI_RED = '\x1b[31m'; export const ANSI_BOLD = '\x1b[1m'; export const ANSI_DIM = '\x1b[2m'; // --- Box Drawing Characters --- // export const BOX_CHARS_ROUNDED = { // topLeft: '╭', topRight: '╮', bottomLeft: '╰', bottomRight: '╯', // horizontal: '─', vertical: '│' // }; // --- Configuration --- export const MAX_APP_WIDTH = 100; // export const PADDING = 2; // --- Spinner Characters --- export const spinnerChars = ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'];