[auto-fix] Apply ESLint and Prettier fixes

This commit is contained in:
GitHub Action
2025-09-13 10:27:34 +00:00
parent 0ae6e26052
commit 35e56a441c
5 changed files with 64 additions and 48 deletions

View File

@@ -74,12 +74,14 @@ export class LocationMock {
/**
* Update the mock location during test execution
*/
async updateLocation(updates: Partial<{
href: string
pathname: string
search: string
hash: string
}>) {
async updateLocation(
updates: Partial<{
href: string
pathname: string
search: string
hash: string
}>
) {
await this.page.evaluate((updates) => {
const location = window.location as any
Object.keys(updates).forEach((key) => {
@@ -139,4 +141,4 @@ export class LocationMock {
location.reload()
})
}
}
}