We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5c62d9 commit 96e9656Copy full SHA for 96e9656
src/client/auth.test.ts
@@ -2380,7 +2380,9 @@ describe('OAuth Authorization', () => {
2380
expect(result).toBe('REDIRECT');
2381
2382
// Verify we tried PRM discovery (with retry for CORS)
2383
- expect(mockFetch.mock.calls.filter(call => call[0].toString().includes('oauth-protected-resource')).length).toBeGreaterThan(0);
+ expect(mockFetch.mock.calls.filter(call => call[0].toString().includes('oauth-protected-resource')).length).toBeGreaterThan(
2384
+ 0
2385
+ );
2386
2387
// Verify we eventually fell back to auth server metadata
2388
expect(mockFetch.mock.calls.some(call => call[0].toString().includes('oauth-authorization-server'))).toBe(true);
0 commit comments