diff options
| author | Yongsheng Xu <[email protected]> | 2025-07-18 09:55:26 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-18 01:55:26 +0000 |
| commit | 91c69731c7be59adbea017d3c8f30281989b6f0a (patch) | |
| tree | 1d2bdb71b942c2eabebd663123044ddc1d13deb7 /packages/core/src/code_assist/oauth2.test.ts | |
| parent | 2f5eecfc49eb4ccb3b5568dd37f2bc2b938a9438 (diff) | |
feat(auth): Enhance OAuth callback for robust Docker support (#3532)
Co-authored-by: Scott Densmore <[email protected]>
Diffstat (limited to 'packages/core/src/code_assist/oauth2.test.ts')
| -rw-r--r-- | packages/core/src/code_assist/oauth2.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/core/src/code_assist/oauth2.test.ts b/packages/core/src/code_assist/oauth2.test.ts index 7fa98e17..9d8fb892 100644 --- a/packages/core/src/code_assist/oauth2.test.ts +++ b/packages/core/src/code_assist/oauth2.test.ts @@ -105,7 +105,7 @@ describe('oauth2', () => { let capturedPort = 0; const mockHttpServer = { - listen: vi.fn((port: number, callback?: () => void) => { + listen: vi.fn((port: number, _host: string, callback?: () => void) => { capturedPort = port; if (callback) { callback(); |
