js-waku/packages/browser-tests/tests/web-chat.spec.ts

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");
});