Skip to content

Commit

Permalink
Fix list item count in the list test
Browse files Browse the repository at this point in the history
  • Loading branch information
mpourismaiel committed May 22, 2020
1 parent 045b938 commit b47da48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cypress/integration/list.spec.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
describe("List fragment", () => {
it("should display pages from same, specific section, with subsections and with subsection leaves", () => {
cy.visit("/dev/list");
cy.get("#upper-leaves article").should("have.length", 4);
cy.get("#branches article").should("have.length", 6);
cy.get("#leaves article").should("have.length", 10);
cy.get("#upper-leaves article").should("have.length", 2);
cy.get("#branches article").should("have.length", 4);
cy.get("#leaves article").should("have.length", 8);
});
});

0 comments on commit b47da48

Please sign in to comment.