(path: string)
| 151 | } |
| 152 | |
| 153 | function getOauthCallbackRelayEndpoint(path: string): string { |
| 154 | return new URL(path, getOauthTokenUrl()).toString() |
| 155 | } |
| 156 | |
| 157 | function isTransientError(error: unknown): boolean { |
| 158 | if (!axios.isAxiosError(error)) { |
no test coverage detected