11 lines
327 B
TypeScript
11 lines
327 B
TypeScript
|
|
import { test, expect } from "@playwright/test";
|
||
|
|
|
||
|
|
test.describe("Public discover", () => {
|
||
|
|
test("discover page loads", async ({ page }) => {
|
||
|
|
await page.goto("/fa/discover");
|
||
|
|
await expect(page.getByRole("heading", { name: /کافهیاب|Discover cafés/i })).toBeVisible({
|
||
|
|
timeout: 15_000,
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|