From f1ede484c6d79d1127112668fb7ed11d5fcdb31a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 05:18:00 +0000 Subject: [PATCH 1/2] Initial plan From d13c776f575010e5d38de9f61dedd2ec20efd801 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 05:26:00 +0000 Subject: [PATCH 2/2] fix: remove test scripts from packages with no test files @objectql/plugin-optimizations and @objectql/plugin-query had "test": "vitest run" scripts but no test files, causing vitest to exit with code 1 and failing the CI pipeline. Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- packages/foundation/plugin-optimizations/package.json | 3 +-- packages/foundation/plugin-query/package.json | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/foundation/plugin-optimizations/package.json b/packages/foundation/plugin-optimizations/package.json index 46a02a3a..15edf264 100644 --- a/packages/foundation/plugin-optimizations/package.json +++ b/packages/foundation/plugin-optimizations/package.json @@ -13,8 +13,7 @@ }, "files": ["dist"], "scripts": { - "build": "tsc", - "test": "vitest run" + "build": "tsc" }, "dependencies": { "@objectql/types": "workspace:*", diff --git a/packages/foundation/plugin-query/package.json b/packages/foundation/plugin-query/package.json index 915b7636..b93d37d0 100644 --- a/packages/foundation/plugin-query/package.json +++ b/packages/foundation/plugin-query/package.json @@ -13,8 +13,7 @@ }, "files": ["dist"], "scripts": { - "build": "tsc", - "test": "vitest run" + "build": "tsc" }, "dependencies": { "@objectql/types": "workspace:*",