(text: string, options?: LoggerOptions)
| 111 | } |
| 112 | |
| 113 | export function succeed(text: string, options?: LoggerOptions) { |
| 114 | writeLog(text, options); |
| 115 | oraInstance().succeed(text); |
| 116 | } |
| 117 | |
| 118 | export function fail(text: string, options?: LoggerOptions) { |
| 119 | writeLog(text, options); |
nothing calls this directly
no test coverage detected