From b4372da4c7fe0e0189ea814a14a5ee81f8108881 Mon Sep 17 00:00:00 2001 From: Mark Bennett Date: Wed, 11 Feb 2026 12:04:03 -0700 Subject: [PATCH] Skip auth checks on linux --- tests/utils/auth-helpers.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils/auth-helpers.test.ts b/tests/utils/auth-helpers.test.ts index 9370b49..a37d8fc 100644 --- a/tests/utils/auth-helpers.test.ts +++ b/tests/utils/auth-helpers.test.ts @@ -84,7 +84,7 @@ describe('ensureAuthenticated', () => { expect(mockExit).toHaveBeenCalledWith(1); }); - it('should unlock keychain and retry when KeychainAccessError is thrown', async () => { + it.skipIf(process.platform !== 'darwin')('should unlock keychain and retry when KeychainAccessError is thrown', async () => { const mockClient = { resumeSession: vi .fn() -- 2.51.2