forked from baron/baron-sso
Biome 및 Go 포맷 적용
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import { expect, test } from "@playwright/test";
|
||||
import {
|
||||
type AuditLog,
|
||||
type Consent,
|
||||
installDevApiMock,
|
||||
makeClient,
|
||||
seedAuth,
|
||||
type AuditLog,
|
||||
type Consent,
|
||||
} from "./helpers/devfront-fixtures";
|
||||
|
||||
test.describe("DevFront audit logs", () => {
|
||||
@@ -85,7 +85,9 @@ test.describe("DevFront audit logs", () => {
|
||||
await installDevApiMock(page, state);
|
||||
|
||||
await page.goto("/clients/new");
|
||||
await page.getByPlaceholder("My Awesome Application").fill("Realtime New App");
|
||||
await page
|
||||
.getByPlaceholder("My Awesome Application")
|
||||
.fill("Realtime New App");
|
||||
await page
|
||||
.getByPlaceholder(/https:\/\/app\.example\.com\/callback/i)
|
||||
.fill("https://realtime.example.com/callback");
|
||||
@@ -93,7 +95,9 @@ test.describe("DevFront audit logs", () => {
|
||||
await expect.poll(() => state.auditLogs.length).toBeGreaterThanOrEqual(1);
|
||||
|
||||
await page.goto("/clients/client-realtime/settings");
|
||||
await page.getByPlaceholder("My Awesome Application").fill("Realtime Updated");
|
||||
await page
|
||||
.getByPlaceholder("My Awesome Application")
|
||||
.fill("Realtime Updated");
|
||||
await page.getByRole("button", { name: /^저장$|^Save$/i }).click();
|
||||
await expect.poll(() => state.auditLogs.length).toBeGreaterThanOrEqual(2);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user