Skip to content

Files

reporter

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 6, 2025
Jan 23, 2025
Nov 24, 2020
Nov 17, 2022
Dec 29, 2022
Aug 15, 2022
Nov 24, 2020
Aug 11, 2023
Oct 29, 2021
Feb 4, 2021
Mar 21, 2025
Jan 23, 2025
Nov 6, 2024

Reporter

Reporter

The reporter shows the running results of the tests. It includes the following:

  • A button to focus the list of test files
  • Stats for number of tests passed, failed, and pending
  • The total test run duration
  • Control for toggling auto-scrolling
  • Controls for various states (running, paused, stopped, etc.)
  • A command log, showing:
    • suites
    • tests
    • hooks
    • commands and assertions with detailed information
    • any failures/errors

Building

For development

yarn workspace @packages/reporter build

For production

yarn workspace @packages/reporter build-prod

Developing

To see the reporter render, see Developing the driver.

Watching

  • Runs *.js and *.jsx through babel and bundles with browserify into single dist/reporter.js
  • Compiles *.scss files to single dist/reporter.css
yarn workspace @packages/reporter watch

Testing

Run Cypress tests found in cypress/integration.

yarn workspace @packages/reporter cypress:open

You'll want to run yarn workspace @packages/reporter watch to iterate on the reporter under test while testing.

You'll want to run yarn workspace @packages/runner watch to get changes to the main Cypress reporter while testing.