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.
command
and click on ▶️ to jump to the next time the line was called.shift-command
and click on ◀️ to jump to the previous time the line was called.Hover on a Cypress action and click on Jump to code to seek to your application’s onClick or onKeypress event handler.
Hover on a console message and click on Jump to code to seek to where the message was emitted.