From 69e5cac6de33f802195ff248dc7819e63b08099a Mon Sep 17 00:00:00 2001 From: marius-kilocode Date: Mon, 29 Jun 2026 17:36:43 +0200 Subject: [PATCH] chore(ci): compact bun junit test output --- packages/core/package.json | 2 +- packages/effect-drizzle-sqlite/package.json | 2 +- packages/http-recorder/package.json | 2 +- packages/kilo-gateway/package.json | 2 +- packages/kilo-sandbox/package.json | 2 +- packages/ui/package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/core/package.json b/packages/core/package.json index 8a56507dd3..b5c0f814c2 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -7,7 +7,7 @@ "private": true, "scripts": { "test": "bun test", - "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml", + "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --dots --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml", "typecheck": "tsgo --noEmit" }, "bin": { diff --git a/packages/effect-drizzle-sqlite/package.json b/packages/effect-drizzle-sqlite/package.json index c6b65536b5..412d3b5b19 100644 --- a/packages/effect-drizzle-sqlite/package.json +++ b/packages/effect-drizzle-sqlite/package.json @@ -7,7 +7,7 @@ "private": true, "scripts": { "test": "bun test --timeout 30000", - "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml", + "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --dots --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml", "typecheck": "tsgo --noEmit" }, "exports": { diff --git a/packages/http-recorder/package.json b/packages/http-recorder/package.json index 3569325edd..06051bb861 100644 --- a/packages/http-recorder/package.json +++ b/packages/http-recorder/package.json @@ -7,7 +7,7 @@ "private": true, "scripts": { "test": "bun test --timeout 30000", - "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml", + "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --dots --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml", "typecheck": "tsgo --noEmit" }, "exports": { diff --git a/packages/kilo-gateway/package.json b/packages/kilo-gateway/package.json index b755d4912f..d8bc7d9478 100644 --- a/packages/kilo-gateway/package.json +++ b/packages/kilo-gateway/package.json @@ -29,7 +29,7 @@ "scripts": { "typecheck": "tsgo --noEmit", "build": "tsc", - "test:ci": "mkdir -p .artifacts/unit && bun test test --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml" + "test:ci": "mkdir -p .artifacts/unit && bun test test --dots --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml" }, "dependencies": { "@kilocode/plugin": "workspace:*", diff --git a/packages/kilo-sandbox/package.json b/packages/kilo-sandbox/package.json index 2bf4ea60d1..5371f36641 100644 --- a/packages/kilo-sandbox/package.json +++ b/packages/kilo-sandbox/package.json @@ -15,7 +15,7 @@ "scripts": { "typecheck": "tsgo --noEmit", "test": "bun test --timeout 30000", - "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml" + "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --dots --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml" }, "dependencies": { "effect": "catalog:" diff --git a/packages/ui/package.json b/packages/ui/package.json index 49da538d91..f07b80d46e 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -28,7 +28,7 @@ "scripts": { "typecheck": "tsgo --noEmit", "test": "bun test src", - "test:ci": "mkdir -p .artifacts/unit && bun test src --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml", + "test:ci": "mkdir -p .artifacts/unit && bun test src --dots --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml", "dev": "vite", "generate:tailwind": "bun run script/tailwind.ts" },