We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75a47b5 commit 940ac2dCopy full SHA for 940ac2d
tests/PKCE.test.ts
@@ -133,11 +133,11 @@ describe('Test PKCE exchange code for token', () => {
133
expect(result.access_token).toEqual('token');
134
});
135
136
- it('Should clear storage after token exchange', async () => {
+ /* @TODO breaking change - implement in v2.0 it('Should clear storage after token exchange', async () => {
137
await mockRequest({}, false);
138
expect(sessionStorage.getItem('pkce_code_verifier')).toEqual(null);
139
expect(sessionStorage.getItem('pkce_state')).toEqual(null);
140
- });
+ }); */
141
142
async function mockRequest(additionalParams: object = {}, enableCorsCredentials: boolean|null = null): Promise<ITokenResponse> {
143
sessionStorage.setItem('pkce_state', 'teststate');
0 commit comments