File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -474,6 +474,9 @@ describe('M2MToken', () => {
474474
475475 const jwtToken = await createSignedM2MJwt ( ) ;
476476 await expect ( m2mApi . verify ( { token : jwtToken } ) ) . rejects . toThrow ( 'Failed to resolve JWK during verification' ) ;
477+ } ) ;
478+ } ) ;
479+
477480 describe ( 'list' , ( ) => {
478481 const machineId = 'mch_1xxxxxxxxxxxxx' ;
479482 const mockM2MTokenList = {
Original file line number Diff line number Diff line change 1+ import type { ClerkPaginationRequest } from '@clerk/shared/types' ;
2+
13import { MachineTokenVerificationError , MachineTokenVerificationErrorCode } from '../../errors' ;
24import { decodeJwt } from '../../jwt/verifyJwt' ;
35import type { JwtMachineVerifyOptions } from '../../jwt/verifyMachineJwt' ;
@@ -6,11 +8,6 @@ import { isM2MJwt } from '../../tokens/machine';
68import { joinPaths } from '../../util/path' ;
79import { deprecated } from '../../util/shared' ;
810import type { ClerkBackendApiRequestOptions , RequestFunction } from '../request' ;
9- import type { ClerkPaginationRequest } from '@clerk/shared/types' ;
10-
11- import { joinPaths } from '../../util/path' ;
12- import { deprecated } from '../../util/shared' ;
13- import type { ClerkBackendApiRequestOptions } from '../request' ;
1411import type { PaginatedResourceResponse } from '../resources/Deserializer' ;
1512import type { M2MToken } from '../resources/M2MToken' ;
1613import { AbstractAPI } from './AbstractApi' ;
You can’t perform that action at this time.
0 commit comments