(alert: AndroidAlertInfo | null)
| 135 | } |
| 136 | |
| 137 | function buildAndroidAlertStatusResponse(alert: AndroidAlertInfo | null): AndroidAlertResult { |
| 138 | return { |
| 139 | kind: 'alertStatus', |
| 140 | platform: 'android', |
| 141 | action: 'get', |
| 142 | alert, |
| 143 | ...(alert ? successText('Alert visible') : successText('No alert visible')), |
| 144 | }; |
| 145 | } |
| 146 | |
| 147 | function buildAndroidAlertHandledResponse( |
| 148 | action: 'accept' | 'dismiss', |
no test coverage detected