(sessionId: string)
| 13 | } from "./oauth-result-store"; |
| 14 | |
| 15 | const sampleResult = (sessionId: string): OAuthPopupResult<unknown> => ({ |
| 16 | type: OAUTH_POPUP_MESSAGE_TYPE, |
| 17 | ok: false, |
| 18 | sessionId, |
| 19 | error: "access denied", |
| 20 | }); |
| 21 | |
| 22 | afterEach(() => { |
| 23 | __resetOAuthResultStoreForTests(); |
no outgoing calls
no test coverage detected