Cypress - Writing Tests
Given the code below, how many tests will run and what will be their names?
describe('Login Tests', () => {
it('should open login page', () => {});
it('should submit login form', () => {});
});