()
| 51 | } |
| 52 | |
| 53 | async function shouldUseLocalServerSession() { |
| 54 | const serverUrl = await getConfiguredServerUrl(); |
| 55 | return shouldUseLocalServerSessionForUrl( |
| 56 | serverUrl, |
| 57 | clientEnv.VITE_SERVER_URL, |
| 58 | import.meta.env.DEV, |
| 59 | ); |
| 60 | } |
| 61 | |
| 62 | async function createSessionRequestUrl( |
| 63 | port: string | null, |
no test coverage detected