summaryrefslogtreecommitdiff
path: root/packages/core/src/mcp/oauth-provider.test.ts
diff options
context:
space:
mode:
authorBrian Ray <[email protected]>2025-07-27 14:09:45 -0400
committerGitHub <[email protected]>2025-07-27 18:09:45 +0000
commitc45c14ee0ea7c3b6c9f66816e82671adf7cde54e (patch)
tree608085113327eb6eeed8ffef3d7f1cc00799b422 /packages/core/src/mcp/oauth-provider.test.ts
parent576cebc9282cfbe57d45321105d72cc61597ce9b (diff)
Bug: add resource parameter to MCP OAuth Flow (#4981)
Co-authored-by: Your Name <[email protected]>
Diffstat (limited to 'packages/core/src/mcp/oauth-provider.test.ts')
-rw-r--r--packages/core/src/mcp/oauth-provider.test.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/core/src/mcp/oauth-provider.test.ts b/packages/core/src/mcp/oauth-provider.test.ts
index 41938969..20dc9fab 100644
--- a/packages/core/src/mcp/oauth-provider.test.ts
+++ b/packages/core/src/mcp/oauth-provider.test.ts
@@ -151,6 +151,7 @@ describe('MCPOAuthProvider', () => {
expect.objectContaining({ accessToken: 'access_token_123' }),
'test-client-id',
'https://auth.example.com/token',
+ undefined,
);
});
@@ -551,6 +552,7 @@ describe('MCPOAuthProvider', () => {
expect.objectContaining({ accessToken: 'new_access_token' }),
'test-client-id',
'https://auth.example.com/token',
+ undefined,
);
});