From bbbc0c6381c09693e755ed2ba20e2d7e964898ef Mon Sep 17 00:00:00 2001 From: olaservo Date: Tue, 28 Oct 2025 21:06:25 -0700 Subject: [PATCH] Fix TypeScript error in filesystem tests by adding missing afterEach import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The afterEach function was used in the test file but not imported from vitest, causing a build failure. This was introduced in PR #2851. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/filesystem/__tests__/path-utils.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystem/__tests__/path-utils.test.ts b/src/filesystem/__tests__/path-utils.test.ts index b03215a9..495d128d 100644 --- a/src/filesystem/__tests__/path-utils.test.ts +++ b/src/filesystem/__tests__/path-utils.test.ts @@ -1,4 +1,4 @@ -import { describe, it, expect } from 'vitest'; +import { describe, it, expect, afterEach } from 'vitest'; import { normalizePath, expandHome, convertToWindowsPath } from '../path-utils.js'; describe('Path Utilities', () => {