()
| 10 | const tempDirs: string[] = []; |
| 11 | |
| 12 | function freshToken(): TokenInfo { |
| 13 | return { |
| 14 | accessToken: 'oauth-access-token', |
| 15 | refreshToken: 'oauth-refresh-token', |
| 16 | expiresAt: Math.floor(Date.now() / 1000) + 3600, |
| 17 | scope: '', |
| 18 | tokenType: 'Bearer', |
| 19 | expiresIn: 3600, |
| 20 | }; |
| 21 | } |
| 22 | |
| 23 | afterEach(async () => { |
| 24 | await removeTempDirs(tempDirs); |
no test coverage detected