| 11 | const MOBILE_DIR = `${OUTPUT_DIR}/mobile` |
| 12 | |
| 13 | interface PageConfig { |
| 14 | name: string |
| 15 | path: string |
| 16 | waitFor?: string |
| 17 | setup?: (page: Page) => Promise<void> |
| 18 | } |
| 19 | |
| 20 | type Page = Awaited<ReturnType<Awaited<ReturnType<typeof chromium.launch>>['newPage']>> |
| 21 |
nothing calls this directly
no outgoing calls
no test coverage detected