Skip to content

Commit 940ac2d

Browse files
committed
comment out test to be implemented in major version change
1 parent 75a47b5 commit 940ac2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PKCE.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,11 @@ describe('Test PKCE exchange code for token', () => {
133133
expect(result.access_token).toEqual('token');
134134
});
135135

136-
it('Should clear storage after token exchange', async () => {
136+
/* @TODO breaking change - implement in v2.0 it('Should clear storage after token exchange', async () => {
137137
await mockRequest({}, false);
138138
expect(sessionStorage.getItem('pkce_code_verifier')).toEqual(null);
139139
expect(sessionStorage.getItem('pkce_state')).toEqual(null);
140-
});
140+
}); */
141141

142142
async function mockRequest(additionalParams: object = {}, enableCorsCredentials: boolean|null = null): Promise<ITokenResponse> {
143143
sessionStorage.setItem('pkce_state', 'teststate');

0 commit comments

Comments
 (0)