Cypress - Writing Tests
Given the code below, which tests will run?
describe('Group A', () => {
it('Test 1', () => { /* code */ })
it.only('Test 2', () => { /* code */ })
it('Test 3', () => { /* code */ })
})
describe.only('Group B', () => {
it('Test 4', () => { /* code */ })
it('Test 5', () => { /* code */ })
})