https://cypress.io logo
``` describe('a google sign in test', () => { it...
# help
s
Copy code
describe('a google sign in test', () => {
  it('Login should happen', () => {
    cy.visit('https://internetcomputerservices.com');

    cy.contains('Dashboard').click();
    cy.contains('Sign in with Google').click();

    cy.origin('https://accounts.google.com', () => {
      cy.visit('/');
    });
  });
});