Cypress - Writing Tests
Analyze the following Cypress test code:
describe.skip('User Actions', () => {
it('Login Test', () => {});
it.only('Logout Test', () => {});
});What is the issue with this code?