Skip to content

Commit c06f60b

Browse files
committed
fix: remove unused variable to fix lint error
https://claude.ai/code/session_01WsFd9hPNmHcP9kJCj7fZHM
1 parent 6e0313d commit c06f60b

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

packages/core/src/spaces/space-archive.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,9 +395,7 @@ describe('exportSpace', () => {
395395
backend.seed('pages/good.md', 'good');
396396
// Simulate a file that exists but fails to read
397397
const origRead = backend.readFile.bind(backend);
398-
let callCount = 0;
399398
vi.spyOn(backend, 'readFile').mockImplementation(async (path: string) => {
400-
callCount++;
401399
if (path.includes('bad.md')) throw new Error('disk error');
402400
return origRead(path);
403401
});

0 commit comments

Comments
 (0)