From 3ab6c3434328bf9f38eb4052c51ddf053445635b Mon Sep 17 00:00:00 2001 From: Lee Cheneler Date: Mon, 1 Dec 2025 22:07:18 +0000 Subject: [PATCH] docs(test-utils): fix import path in README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit test-utils is internal only (not in package exports), so use relative import path instead of package path. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- test-utils/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-utils/README.md b/test-utils/README.md index c453d8b..dbfb3e3 100644 --- a/test-utils/README.md +++ b/test-utils/README.md @@ -5,7 +5,7 @@ Test server for running Tabi apps in tests. ## Installation ```typescript -import { TabiTestServer } from "@tabirun/app/test-utils"; +import { TabiTestServer } from "./test-utils/server.ts"; ``` ## Usage