Whether the step has been filled out.
()
| 72 | |
| 73 | /** Whether the step has been filled out. */ |
| 74 | async isCompleted(): Promise<boolean> { |
| 75 | const state = await this._getIconState(); |
| 76 | return state === 'done' || (state === 'edit' && !(await this.isSelected())); |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Whether the step is currently showing its error state. Note that this doesn't mean that there |
no test coverage detected