Skip to content

Commit

Permalink
Trying with un-partitioned input json file
Browse files Browse the repository at this point in the history
  • Loading branch information
philrenaud committed Dec 2, 2024
1 parent acb39b6 commit 48db9bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
PERCY_TOKEN: ${{ env.PERCY_TOKEN || secrets.PERCY_TOKEN }}
PERCY_PARALLEL_NONCE: ${{ needs.pre-test.outputs.nonce }}
run: |
yarn exam:parallel --split=${{ matrix.split }} --partition=${{ matrix.partition }} --json-report=test-results/test-results-${{ matrix.partition }}.json
yarn exam:parallel --split=${{ matrix.split }} --partition=${{ matrix.partition }} --json-report=test-results/test-results.json
continue-on-error: true
- name: Express timeout failure
if: ${{ failure() }}
Expand Down
10 changes: 5 additions & 5 deletions ui/test-reporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,12 @@ class JsonReporter {

// Print a summary
console.log('\n[Reporter] Test Summary:');
console.log(`Total: ${total}`);
console.log(`Passed: ${passed}`);
console.log(`Failed: ${failed}`);
console.log(`Duration: ${duration}ms`);
console.log(`- Total: ${total}`);
console.log(`- Passed: ${passed}`);
console.log(`- Failed: ${failed}`);
console.log(`- Duration: ${duration}ms`);
if (failed > 0) {
console.log('\nFailed Tests:');
console.log('\n[Reporter] Failed Tests:');
this.results
.filter((r) => !r.passed)
.forEach((r) => {
Expand Down

0 comments on commit 48db9bc

Please sign in to comment.