Skip to content

Commit

Permalink
chore: add signature test for parseFromUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandrpravosudko-okta committed Jul 6, 2021
1 parent eb55920 commit 5387771
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions test/types/parseFromUrl.test-d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*!
* Copyright (c) 2015-present, Okta, Inc. and/or its affiliates. All rights reserved.
* The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
*
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* See the License for the specific language governing permissions and limitations under the License.
*
*/

import {
OktaAuth, TokenResponse
} from '@okta/okta-auth-js';
import { expectType } from 'tsd';

const authClient = new OktaAuth({});
(async () => {
expectType<TokenResponse>(await authClient.token.parseFromUrl());
expectType<TokenResponse>(await authClient.token.parseFromUrl({
url: 'http://org.com?token',
responseMode: 'query'
}));
})();

0 comments on commit 5387771

Please sign in to comment.