()
| 412 | // In GitHub Actions, we run Android tests with a hardware keyboard, so the onscreen keyboard doesn’t appear. |
| 413 | // On iOS, it doesn’t cause any known issues. |
| 414 | export async function waitForKeyboardToClose() { |
| 415 | if (device.getPlatform() === 'ios' || process.env.CI) { |
| 416 | return; |
| 417 | } |
| 418 | await sleep(500); |
| 419 | } |
no test coverage detected