aboutsummaryrefslogtreecommitdiff
path: root/cypress/e2e/guide.cy.ts
blob: 6186f93808ead5555276acedd9df41fe3d88d163 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
describe('Guide Test', () => {
  it('navigates to the getting started section', () => {
    // given
    cy.visit('/');

    // when
    cy.get('a').contains('Get Started').click();

    // then
    cy.url().should('include', '/guide/');
    cy.contains('Getting Started');
  });
});