From 21c6a87b59a59be95fada6334817652d39eb6904 Mon Sep 17 00:00:00 2001 From: notaphplover Date: Sat, 8 Aug 2026 11:52:49 +0200 Subject: [PATCH] fix: add missing test deps --- turbo.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/turbo.json b/turbo.json index 0cddd9a..60c572e 100644 --- a/turbo.json +++ b/turbo.json @@ -48,15 +48,30 @@ "inputs": ["src/**/*.{cts,mts,ts,tsx}"], "outputs": ["coverage/**"] }, + "@inversifyjs/prisma#test:coverage": { + "dependsOn": ["^build", "test:db:generate"], + "inputs": ["src/**/*.{cts,mts,ts,tsx}"], + "outputs": [] + }, "test:uncommitted": { "dependsOn": ["^build"], "inputs": ["src/**/*.{cts,mts,ts,tsx}"], "outputs": [] }, + "@inversifyjs/prisma#test:uncommitted": { + "dependsOn": ["^build", "test:db:generate"], + "inputs": ["src/**/*.{cts,mts,ts,tsx}"], + "outputs": [] + }, "test:unit": { "dependsOn": ["^build"], "inputs": ["src/**/*.{cts,mts,ts,tsx}"], "outputs": [] + }, + "@inversifyjs/prisma#test:unit": { + "dependsOn": ["^build", "test:db:generate"], + "inputs": ["src/**/*.{cts,mts,ts,tsx}"], + "outputs": [] } }, "ui": "tui"