mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 13:53:12 +00:00
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");
|
||
|
|
});
|