mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-01-21 02:50:55 +01:00
15 lines
352 B
JavaScript
15 lines
352 B
JavaScript
|
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");
|
||
|
});
|
||
|
});
|