mirror of
https://github.com/Buriburizaem0n/admin-frontend-domain.git
synced 2026-09-19 09:40:13 +00:00
Stabilize CI runtime for updated deps and unblock Dependabot auto-format flow (#185)
* chore: apply ci and dependabot remediation changes * chore: auto-fix linting and formatting issues --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Page, Request, expect, test as base } from "@playwright/test"
|
||||
import { Page, Request, test as base, expect } from "@playwright/test"
|
||||
|
||||
export type LoginContext = {
|
||||
username: string
|
||||
@@ -39,7 +39,8 @@ export async function csrfHeaders(page: Page): Promise<Record<string, string>> {
|
||||
await expect
|
||||
.poll(
|
||||
async () => {
|
||||
value = (await page.context().cookies()).find((c) => c.name === "nz-csrf")?.value ?? ""
|
||||
value =
|
||||
(await page.context().cookies()).find((c) => c.name === "nz-csrf")?.value ?? ""
|
||||
return value
|
||||
},
|
||||
{ timeout: 10_000 },
|
||||
|
||||
Reference in New Issue
Block a user