(instance: ComponentInstance)
| 115 | } |
| 116 | |
| 117 | async walkComponentParents(instance: ComponentInstance) { |
| 118 | const payload = await this.callHook(Hooks.WALK_COMPONENT_PARENTS, { |
| 119 | componentInstance: instance, |
| 120 | parentInstances: [], |
| 121 | }) |
| 122 | return payload.parentInstances |
| 123 | } |
| 124 | |
| 125 | async inspectComponent(instance: ComponentInstance, app: App) { |
| 126 | const payload = await this.callHook(Hooks.INSPECT_COMPONENT, { |
no test coverage detected