(name: string)
| 146 | }; |
| 147 | |
| 148 | const findAccessApp = async (name: string): Promise<any | null> => { |
| 149 | const apps = await cfList(`/accounts/${ACCOUNT}/access/apps`); |
| 150 | return apps.find((app: any) => app.name === name) ?? null; |
| 151 | }; |
| 152 | |
| 153 | /** |
| 154 | * One Access application per preview, gating its workers.dev hostname at the |
no test coverage detected