From 41233b6445212988eaa7842e05dad059454f7f44 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Wed, 7 Jan 2026 05:28:46 +0100 Subject: [PATCH] chore(ci): try using the `spec` test reporter instead of `tab` (#6632) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0686aa316..fe19b75ab 100644 --- a/package.json +++ b/package.json @@ -28,8 +28,8 @@ "test": "npm run test-backend && npm run test-e2e", "test-with-build": "npm run build && npm test", "test-backend": "node test/test-backend.mjs", - "test-backend-22": "cross-env TEST_BACKEND=1 node --test \"test/backend-test/**/*.js\"", - "test-backend-20": "cross-env TEST_BACKEND=1 node --test test/backend-test", + "test-backend-22": "cross-env TEST_BACKEND=1 node --test --test-reporter=spec \"test/backend-test/**/*.js\"", + "test-backend-20": "cross-env TEST_BACKEND=1 node --test --test-reporter=spec test/backend-test", "test-e2e": "playwright test --config ./config/playwright.config.js", "test-e2e-ui": "playwright test --config ./config/playwright.config.js --ui --ui-port=51063", "playwright-codegen": "playwright codegen localhost:3000 --save-storage=./private/e2e-auth.json",