Completes the spinner marking it as successful with a `✓`.
(text: string)
| 49 | |
| 50 | /** Completes the spinner marking it as successful with a `✓`. */ |
| 51 | success(text: string): void { |
| 52 | this._complete(green('✓'), text); |
| 53 | } |
| 54 | |
| 55 | /** Completes the spinner marking it as failing with an `✘`. */ |
| 56 | failure(text: string): void { |
no test coverage detected