(text: string, options?: LoggerOptions)
| 116 | } |
| 117 | |
| 118 | export function fail(text: string, options?: LoggerOptions) { |
| 119 | writeLog(text, options); |
| 120 | oraInstance().fail(options?.bold ? bold(text) : text); |
| 121 | } |
| 122 | |
| 123 | export function warn(text: string, options?: LoggerOptions) { |
| 124 | writeLog(text, options); |
nothing calls this directly
no test coverage detected