Skip to content

Commit

Permalink
Merge pull request #766 from mpourismaiel/fix/tests/wrong-list-item-c…
Browse files Browse the repository at this point in the history
…ount

Fix list item count in the list test
  • Loading branch information
stp-ip authored May 23, 2020
2 parents 536cb85 + b47da48 commit 4893fbf
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 4893fbf

Please sign in to comment.