Feature: Debugging in Cypress
  How and when to use debugger and the shorthand debug command. Browser DevTools should be opened
  during the test execution.

  Background: Open the Kitchen Sink page
    Given I visit the Kitchen Sink

  @id_7adea781e97db4673b7f3bd11b40c827bf3e8033fe8c11f94ea576290f847a6b
  Scenario: debug method
    When I use debug command
    Then I can inspect app in the DevTools Console

  @id_362c1bd347e3f0952f056dc08ce94609e178d868bb9474e7cc3920d92863811e
  Scenario: pause method
    When I use pause command
    Then I can step through test commands

  @id_120d7de301d4f5dd1e41e5068671037d32f959c62418d9be39793545a2f1f5ab
  Scenario: debugger keyword
    When I use debugger keyword
    Then I can inspect app in the DevTools Console
