Cypress Quiz

Correct: 0
Incorrect: 0
Remaining: 14
💡 What will happen after running the following test?
it('should pass?', () => {
 cy.visit('https://cypress.io');
 cy.visit('https://cypressquiz.com/');

 cy.get('h1').should('contain.text', 'Quiz');
});
A | Test will pass
B | Test will fail
C | AssertionError, expected 'Test. Automate. Accelerate.' to contain text 'Quiz'