tangled
alpha
login
or
join now
markbennett.ca
/
tangled-cli
6
fork
atom
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! :)
6
fork
atom
overview
issues
12
pulls
1
pipelines
Skip auth checks on linux
markbennett.ca
1 month ago
b4372da4
3c6ec7d9
verified
This commit was signed with the committer's
known signature
.
markbennett.ca
SSH Key Fingerprint:
SHA256:z3PutB1OfTO5KbZLCpZP6IUDidbRq5Mdysn2xZlUL/c=
0/0
Waiting for spindle ...
+1
-1
1 changed file
expand all
collapse all
unified
split
tests
utils
auth-helpers.test.ts
+1
-1
tests/utils/auth-helpers.test.ts
···
84
84
expect(mockExit).toHaveBeenCalledWith(1);
85
85
});
86
86
87
87
-
it('should unlock keychain and retry when KeychainAccessError is thrown', async () => {
87
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()