-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
3,051 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
describe('HttpManager', () => { | ||
describe('auth', () => { | ||
it('should use access token when it is active', async () => {}); | ||
|
||
it('should refresh access token before request when it is expired', async () => {}); | ||
|
||
it('should request new access token when refresh token is not specified', async () => {}); | ||
|
||
it('should throw error when unable to issue access token', async () => {}); | ||
}); | ||
|
||
describe('retries', () => {}); | ||
|
||
describe('rate limit', () => {}); | ||
|
||
describe('errors', () => {}); | ||
|
||
describe('methods', () => { | ||
it('should return 200 in case of success', () => {}); | ||
}); | ||
}); |
Oops, something went wrong.