1
0
forked from baron/baron-sso
Files
baron-sso/orgfront/tests/example.spec.ts

9 lines
229 B
TypeScript

import { expect, test } from "@playwright/test";
test("has title", async ({ page }) => {
await page.goto("/");
// Expect a title "to contain" a substring.
await expect(page).toHaveTitle(/바론 개발자 서비스/);
});