Skip to content

Commit 9f6a5db

Browse files
authored
Merge pull request #1069 from monarch-initiative/issue-1056-info-page
Issue -1056 Monarch Initiative Info Pages
2 parents b2d51dd + b0f7f65 commit 9f6a5db

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2581
-279
lines changed

frontend/e2e/axe.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const checkPage =
6767
/** perform interaction on selector */
6868
if (selector) {
6969
await page.locator(selector).first().focus();
70-
await page.locator(selector).first().click();
70+
await page.locator(selector).first().click({ force: true });
7171
}
7272

7373
/** axe check */

frontend/e2e/header.test.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,9 @@ test.describe("Header Navigation", () => {
5252
await page.setViewportSize(desktopSize);
5353
await page.goto("/");
5454

55-
const navLinks = page.locator(".navItems .link");
56-
await expect(navLinks.first()).toBeVisible();
57-
55+
await page.waitForLoadState("networkidle");
5856
const dropdowns = page.locator(".dropdown-button");
59-
const count = await dropdowns.count();
60-
expect(count).toBeGreaterThan(0);
57+
const dropdownCount = await dropdowns.count();
58+
expect(dropdownCount).toBeGreaterThan(0);
6159
});
6260
});
632 KB
Loading
385 KB
Loading
174 KB
Loading
91.7 KB
Loading
4.55 KB
Loading
Lines changed: 74 additions & 0 deletions
Loading
Lines changed: 8 additions & 5 deletions
Loading
Lines changed: 37 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)