Skip to content

Commit 03e08e3

Browse files
authored
fix: update expected list length on cypress test
1 parent d5f9d66 commit 03e08e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cypress/integration/word-list/index.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe("Word list with filters", function () {
1515
it("should filter the table when a filter string is provided", () => {
1616
cy.get('[data-cy="word-list-table"] tbody tr').as("table-rows");
1717
cy.get('[data-cy="word-list-filter-input"]').click().type("ad");
18-
cy.get("@table-rows").its("length").should("eq", 4);
18+
cy.get("@table-rows").its("length").should("eq", 6);
1919
});
2020

2121
it("should show empty state when nothing returned", () => {

0 commit comments

Comments
 (0)