Skip to content

Commit

Permalink
home page nav bar no longer has icons
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsung committed Jun 17, 2024
1 parent e6c018d commit e2271be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/js/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ import {
test.describe("top nav bar", () => {
test("uses custom page ToC icon on tablet", async ({ page }) => {
await setTablet(page);
await page.goto("");
await page.goto("sphinx_guide/lists.html");
const pageToC = page.locator("div.content-icon-container");
await expect(pageToC).toHaveScreenshot();
});

test("uses custom icons on mobile", async ({ page }) => {
await setMobile(page);
await page.goto("");
await page.goto("sphinx_guide/lists.html");
const header = page.locator("header.mobile-header");
await expect(header).toHaveScreenshot();
});
Expand Down

0 comments on commit e2271be

Please sign in to comment.