From c683c04c397038e7912477b4c960ba7160a36d69 Mon Sep 17 00:00:00 2001 From: Wassim SAMAD Date: Thu, 14 May 2026 11:41:46 -0400 Subject: [PATCH] Add test script to @pascal-app/core so turbo picks up its unit tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without a "test" script the package was invisible to `turbo test` — private-editor's CI runs `bun run test` (= `turbo test`), which only walks workspace packages that declare a test runner. Mirrors mcp and nodes which already do this. Co-Authored-By: Claude Opus 4.7 (1M context) --- packages/core/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/package.json b/packages/core/package.json index 42644f39..be81a311 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -59,6 +59,7 @@ "scripts": { "build": "tsc --build", "dev": "tsc --build --watch", + "test": "bun test", "prepublishOnly": "npm run build" }, "peerDependencies": {