Skip to content

Commit

Permalink
fix(frontend): 🐛 prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakob Grøtan Gregusson committed Apr 25, 2024
1 parent f8ea1df commit 5e2121b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/tests/e2e/blog.mobile.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ test.describe("Blogs pages test", () => {
await expect(page.getByTestId("pageSubtitle")).toBeVisible();
await page.getByTestId("blogsSatellitesButton").click();
await expect(page).toHaveURL("/blog?page=1&tag=Satellites");
await expect(page.getByTestId("articleTag").first()).toHaveText("Satellites");
await expect(page.getByTestId("articleTag").first()).toHaveText(
"Satellites",
);
await page.getByTestId("blogCardLink").first().click();
await expect(page).toHaveURL(/\/blog\/.+$/);
});
Expand Down

0 comments on commit 5e2121b

Please sign in to comment.