Traditional debuggers let you pause and debug your application at a single point in time. With time travel debuggers, you can pause your application at any point in time.
The key is being able to easily jump to the most interesting points in time.
Jump to line
- Hold down
command
and click on โถ๏ธย to jump to the next time the line was called.
- Hold down
shift-command
and click on โ๏ธย to jump to the previous time the line was called.
Jump to Cypress event
Hover on a Cypress action and click on Jump to code to seek to your applicationโs onClick or onKeypress event handler.
Jump to console message
Hover on a console message and click on Jump to code to seek to where the message was emitted.
Jump to request
Hover on a network XHR event and click on Jump to code to seek to where the request originated.