Cypress - Test Organization and Patterns
Given this
What will
cypress.config.js snippet:export default defineConfig({
env: {
username: 'user1',
password: 'pass1'
}
})What will
console.log(Cypress.env('username')) print during a test?