diff --git a/.github/workflows/tests-debug.yml b/.github/workflows/tests-debug.yml index a37f8ecf42..745995c7f8 100644 --- a/.github/workflows/tests-debug.yml +++ b/.github/workflows/tests-debug.yml @@ -55,7 +55,68 @@ jobs: path: /tmp/jest_cache key: ${{ hashFiles('**/yarn.lock') }} - - name: Run tests + - name: Run tests 0 + run: | + yarn test \ + --verbose \ + --silent=false \ + --cacheDirectory /tmp/jest_cache \ + MatrixChat-test.tsx + env: + JEST_SONAR_UNIQUE_OUTPUT_NAME: true + + # tell jest to use coloured output + FORCE_COLOR: true + + - name: Run tests 1 + run: | + yarn test \ + --verbose \ + --silent=false \ + --cacheDirectory /tmp/jest_cache \ + MatrixChat-test.tsx + env: + JEST_SONAR_UNIQUE_OUTPUT_NAME: true + + # tell jest to use coloured output + FORCE_COLOR: true + - name: Run tests 2 + run: | + yarn test \ + --verbose \ + --silent=false \ + --cacheDirectory /tmp/jest_cache \ + MatrixChat-test.tsx + env: + JEST_SONAR_UNIQUE_OUTPUT_NAME: true + + # tell jest to use coloured output + FORCE_COLOR: true + - name: Run tests 3 + run: | + yarn test \ + --verbose \ + --silent=false \ + --cacheDirectory /tmp/jest_cache \ + MatrixChat-test.tsx + env: + JEST_SONAR_UNIQUE_OUTPUT_NAME: true + + # tell jest to use coloured output + FORCE_COLOR: true + - name: Run tests 4 + run: | + yarn test \ + --verbose \ + --silent=false \ + --cacheDirectory /tmp/jest_cache \ + MatrixChat-test.tsx + env: + JEST_SONAR_UNIQUE_OUTPUT_NAME: true + + # tell jest to use coloured output + FORCE_COLOR: true + - name: Run tests 5 run: | yarn test \ --verbose \