Updates the spinner text with the provided text.
(text: string)
| 44 | |
| 45 | /** Updates the spinner text with the provided text. */ |
| 46 | update(text: string) { |
| 47 | this.text = text; |
| 48 | } |
| 49 | |
| 50 | /** Completes the spinner marking it as successful with a `✓`. */ |
| 51 | success(text: string): void { |
no outgoing calls
no test coverage detected