(index: number, label: string, identifier: string, parentIndex = 0)
| 74 | } |
| 75 | |
| 76 | function text(index: number, label: string, identifier: string, parentIndex = 0): RawSnapshotNode { |
| 77 | return node(index, 'android.widget.TextView', { label, identifier, parentIndex }); |
| 78 | } |
| 79 | |
| 80 | function button( |
| 81 | index: number, |
no test coverage detected
searching dependent graphs…