mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 16:00:19 -05:00
14 lines
387 B
JavaScript
14 lines
387 B
JavaScript
import { test, expect } from "@playwright/test";
|
|
|
|
test("Has title", async ({ page }) => {
|
|
await page.route("**/api/rpc/command/get-profile", (route) => {
|
|
route.fulfill({
|
|
status: 200,
|
|
contentType: "application/transit+json",
|
|
path: "playwright/data/get-profile-anonymous.json",
|
|
});
|
|
});
|
|
await page.goto("/");
|
|
|
|
await expect(page).toHaveTitle(/Penpot/);
|
|
});
|