(snapshot)
| 1647 | } |
| 1648 | |
| 1649 | function looksLikeKeyboardTipPrompt(snapshot) { |
| 1650 | return ( |
| 1651 | /Speed up your typing/i.test(snapshot) && |
| 1652 | /Button(?:\s+#[^:\n]+)?:\s+Continue\b/.test(snapshot) |
| 1653 | ); |
| 1654 | } |
| 1655 | |
| 1656 | function looksLikeKeyboardTipQuery(snapshot) { |
| 1657 | const text = JSON.stringify(snapshot?.matches ?? snapshot ?? []); |
no outgoing calls
no test coverage detected