(error)
| 887 | } |
| 888 | |
| 889 | function isAndroidIntentUnavailable(error) { |
| 890 | const message = error instanceof Error ? error.message : String(error); |
| 891 | return /unable to resolve Intent|No Activity found|Activity class .* does not exist/i.test( |
| 892 | message, |
| 893 | ); |
| 894 | } |
| 895 | |
| 896 | function assertAndroidListed(payload, udid) { |
| 897 | assert.ok( |
no outgoing calls
no test coverage detected