Skip to content

Commit df2e2d1

Browse files
committed
Resolving prettier error
1 parent 8263a5a commit df2e2d1

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

packages/client/test/client/authExtensions.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -470,9 +470,7 @@ describe('CrossAppAccessProvider', () => {
470470
// Manually set authorization server URL but not resource URL
471471
provider.saveAuthorizationServerUrl?.(AUTH_SERVER_URL);
472472

473-
await expect(provider.prepareTokenRequest()).rejects.toThrow(
474-
'Resource URL not available. Ensure auth() has been called first.'
475-
);
473+
await expect(provider.prepareTokenRequest()).rejects.toThrow('Resource URL not available. Ensure auth() has been called first.');
476474
});
477475

478476
it('stores and retrieves authorization server URL', () => {

packages/client/test/client/crossAppAccess.test.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
import type { FetchLike } from '@modelcontextprotocol/core';
22
import { describe, expect, it, vi } from 'vitest';
33

4-
import {
5-
discoverAndRequestJwtAuthGrant,
6-
exchangeJwtAuthGrant,
7-
requestJwtAuthorizationGrant
8-
} from '../../src/client/crossAppAccess.js';
4+
import { discoverAndRequestJwtAuthGrant, exchangeJwtAuthGrant, requestJwtAuthorizationGrant } from '../../src/client/crossAppAccess.js';
95

106
describe('crossAppAccess', () => {
117
describe('requestJwtAuthorizationGrant', () => {

0 commit comments

Comments
 (0)