From 93abba044a647b8619512f9b6c0ff959e74bea7f Mon Sep 17 00:00:00 2001 From: RevIQ Date: Sat, 10 Jan 2026 15:56:51 +0800 Subject: [PATCH] Add root test script using Turborepo Co-Authored-By: Claude Opus 4.5 --- package.json | 1 + turbo.json | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/package.json b/package.json index c2f32e2..740d31d 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "lint:fix": "biome check --write --unsafe && turbo run lint -- --fix", "typecheck": "turbo typecheck", "clean": "turbo clean", + "test": "turbo test", "db:codegen": "bun run --cwd packages/db-schema generate" }, "devDependencies": { diff --git a/turbo.json b/turbo.json index 9e0a980..4e37ec2 100644 --- a/turbo.json +++ b/turbo.json @@ -29,6 +29,11 @@ "dependsOn": ["^build"], "inputs": ["src/**/*.ts", "src/**/*.test.ts"], "cache": false + }, + "test": { + "dependsOn": ["^build"], + "inputs": ["src/**/*.ts", "src/**/*.test.ts"], + "cache": false } } }