Verify Cypress configuration settings are applied correctly
Preconditions (2)
Step 1: Open cypress.config.js file
Step 2: Set baseUrl to 'https://example.com'
Step 3: Set defaultCommandTimeout to 10000 milliseconds
Step 4: Set viewportWidth to 1280 and viewportHeight to 720
Step 5: Save the configuration file
Step 6: Write a test that visits the baseUrl
Step 7: Check that the viewport size is 1280x720
Step 8: Check that the page URL is 'https://example.com/'
✅ Expected Result: The test runs successfully using the settings from cypress.config.js: baseUrl is used for visit, viewport size is set to 1280x720, and commands respect the default timeout.