Cypress - Writing Tests
You have this Cypress test code:
describe.skip('Group X', () => {
it.only('Test A', () => { /* code */ })
it('Test B', () => { /* code */ })
})
describe('Group Y', () => {
it('Test C', () => { /* code */ })
})
What is the problem with this code?