approvals
Version:
Approval Tests Library - Capturing Human Intelligence
16 lines (13 loc) • 350 B
text/typescript
import { gray, green, red, yellow } from "ansi-colors";
export function yellowText(text: string): string {
return yellow(text);
}
export function redText(text: string): string {
return red(text);
}
export function greenText(text: string): string {
return green(text);
}
export function grayText(text: string): string {
return gray(text);
}