(page: Page)
| 34 | * Returns null if no token is set or debug interface is not available. |
| 35 | */ |
| 36 | export async function getToken(page: Page): Promise<string | null> { |
| 37 | return page.evaluate(() => window.__conduit_debug__?.getToken() ?? null); |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Get the current authentication state from the app's debug interface. |
no outgoing calls
no test coverage detected