(_context: AuthContext)
| 7 | context('when the provider is already reauthenticating', function () { |
| 8 | const provider = new (class extends AuthProvider { |
| 9 | override auth(_context: AuthContext): Promise<void> { |
| 10 | throw new Error('Method not implemented.'); |
| 11 | } |
| 12 | })(); |
| 13 | |
| 14 | const context = { reauthenticating: true }; |
no outgoing calls
no test coverage detected