Verify skipping and focusing tests using .skip and .only in Cypress
Preconditions (2)
Step 1: Write three test cases: one to check the page title, one to check the login form presence, and one to check the login button is disabled initially
Step 2: Mark the second test case with .skip to skip it during test execution
Step 3: Mark the third test case with .only to run only this test case
Step 4: Run the Cypress test suite
Step 5: Observe which tests run and which are skipped
✅ Expected Result: Only the third test case runs and passes; the second test case is skipped; the first test case does not run