mirror of https://github.com/waku-org/js-waku.git
7 lines
186 B
TypeScript
7 lines
186 B
TypeScript
|
import { expect, test } from "@playwright/test";
|
||
|
|
||
|
test("has title Web Chat title", async ({ page }) => {
|
||
|
await page.goto("");
|
||
|
await expect(page).toHaveTitle("Waku v2 chat app");
|
||
|
});
|