WIP: A simple cli for daily tangled use cases and AI integration. This is for my personal use right now, but happy if others get mileage from it! :)

Skip auth checks on linux

markbennett.ca b4372da4 3c6ec7d9

verified
Waiting for spindle ...
+1 -1
+1 -1
tests/utils/auth-helpers.test.ts
··· 84 84 expect(mockExit).toHaveBeenCalledWith(1); 85 85 }); 86 86 87 - it('should unlock keychain and retry when KeychainAccessError is thrown', async () => { 87 + it.skipIf(process.platform !== 'darwin')('should unlock keychain and retry when KeychainAccessError is thrown', async () => { 88 88 const mockClient = { 89 89 resumeSession: vi 90 90 .fn()