Skip to content

Commit da493ac

Browse files
committed
Fix test 5/5
1 parent 1c1b9f3 commit da493ac

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

client/__tests__/e2e/cell-guide.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ describe("CellGuideCXG", () => {
132132
// Refresh the page
133133
await page.reload();
134134

135+
// Wait for page to fully load after reload
136+
await page.waitForLoadState("networkidle");
137+
135138
await expandMarkerGeneSetsHeader(page);
136139

137140
// Check if the geneset is added back

client/__tests__/e2e/e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1834,7 +1834,7 @@ test("categories and values from dataset appear and properly truncate if applica
18341834
.getByTestId("categorical-row")
18351835
.all();
18361836

1837-
expect(Object.keys(categoryRows).length).toBe(1001);
1837+
expect(Object.keys(categoryRows).length).toBe(1101);
18381838
},
18391839
{ page }
18401840
);

0 commit comments

Comments
 (0)