From bbe7a777028841d677327e4f73af4c5bfedb37cc Mon Sep 17 00:00:00 2001 From: Valentin Palkovic Date: Thu, 23 Jan 2025 12:31:44 +0100 Subject: [PATCH] Build: Fix test command in CircleCI config to use multiple reporters --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f80e7e686f7c..38ede3da21ac 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -332,7 +332,7 @@ jobs: name: Test command: | cd code - SHARD="$((${CIRCLE_NODE_INDEX}+1))"; yarn test --reporter=blob --shard=${SHARD}/${CIRCLE_NODE_TOTAL} + SHARD="$((${CIRCLE_NODE_INDEX}+1))"; yarn test --reporter=blob --reporter=default --shard=${SHARD}/${CIRCLE_NODE_TOTAL} # TODO: bring coverage back later. This has caused flakiness in the tests because # Somehow Vitest reports coverage while some tests are still running, # then it tries to report coverage again and as result it crashes like this: