Skip to content

Commit

Permalink
test: disable eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroki0525 committed Mar 12, 2024
1 parent 9074031 commit 02e19d8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/__tests__/browser.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ describe('Browser', () => {
beforeAll(async () => {
await page.setRequestInterception(true);
page.on('request', interceptedRequest => {
// isInterceptResolutionHandled is not defined in the type definition
// eslint-disable-next-line @typescript-eslint/no-explicit-any
if ((interceptedRequest as any).isInterceptResolutionHandled())
return;
const requestUrl = interceptedRequest.url();
Expand Down

0 comments on commit 02e19d8

Please sign in to comment.