react-starter-kit/cypress/e2e/navigation.cy.js

15 lines
352 B
JavaScript
Raw Permalink Normal View History

2022-06-27 18:04:55 +02:00
describe("Application navigation", () => {
beforeEach(() => {
cy.visit("http://localhost:3000");
});
it("Should render the navigation links", () => {
cy.get("[data-testid='nav']");
});
it("Should navigate to about when clicking on About", () => {
cy.get('[data-testid="nav.about"]').click();
cy.contains("About");
2022-06-27 18:04:55 +02:00
});
});