Skip to content

Commit dbe0c13

Browse files
enesozturkclaude
andcommitted
chore: fix lint errors in clickOpenWebApp
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 44c0d84 commit dbe0c13

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

apps/laboratory/tests/shared/pages/ModalPage.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,10 +937,11 @@ export class ModalPage {
937937
await this.page.evaluate(() => {
938938
const original = window.open
939939
;(window as unknown as { __capturedOpenUrl: string }).__capturedOpenUrl = ''
940-
window.open = function patchedOpen(...args: Parameters<typeof window.open>) {
940+
window.open = function open(...args: Parameters<typeof window.open>) {
941941
;(window as unknown as { __capturedOpenUrl: string }).__capturedOpenUrl = String(
942942
args[0] ?? ''
943943
)
944+
944945
return original.apply(this, args)
945946
}
946947
})

0 commit comments

Comments
 (0)