첫 커밋: 로컬 프로젝트 업로드
This commit is contained in:
15
baron-sso/devfront/tests/example.spec.ts
Normal file
15
baron-sso/devfront/tests/example.spec.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { expect, test } from "@playwright/test";
|
||||
import { captureEvidence } from "./helpers/evidence";
|
||||
|
||||
test.afterEach(async ({ page }, testInfo) => {
|
||||
if (testInfo.status === "passed") {
|
||||
await captureEvidence(page, testInfo, testInfo.title);
|
||||
}
|
||||
});
|
||||
|
||||
test("has title", async ({ page }) => {
|
||||
await page.goto("/");
|
||||
|
||||
// Expect a title "to contain" a substring.
|
||||
await expect(page).toHaveTitle(/바론 개발자 서비스/);
|
||||
});
|
||||
Reference in New Issue
Block a user