Cypress - Writing Tests
Consider this Cypress test code:
How many times will
describe('My Tests', () => {
beforeEach(() => {
cy.visit('/login')
})
it('Test 1', () => {
cy.get('#username').type('user1')
})
it('Test 2', () => {
cy.get('#username').type('user2')
})
})How many times will
cy.visit('/login') run when these tests execute?