-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix list item count in the list test
- Loading branch information
1 parent
045b938
commit b47da48
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
}); | ||
}); |