From 35e579b83daa57868615ca40ad75c65b7c9a01bd Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Fri, 21 Mar 2025 13:19:51 -0700 Subject: [PATCH] chore: fix lint --- src/context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context.ts b/src/context.ts index e94d903..9afea59 100644 --- a/src/context.ts +++ b/src/context.ts @@ -51,7 +51,7 @@ export class Context { this._page.on('console', event => this._console.push(event)); this._page.on('framenavigated', frame => { if (!frame.parentFrame()) - this._console.length = 0 + this._console.length = 0; }); })(); return this._initializePromise;