Skip to content

Commit 466edec

Browse files
committed
chore: update Husky and Prettier rules for code consistency
1 parent 82b0c8a commit 466edec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests-examples/demo-todo-app.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable @typescript-eslint/no-explicit-any */
2-
import { test, expect, type Page, JSHandle } from '@playwright/test';
2+
import { JSHandle, type Page, expect, test } from '@playwright/test';
33

44
test.beforeEach(async ({ page }) => {
55
await page.goto('https://demo.playwright.dev/todomvc');
@@ -472,10 +472,10 @@ async function checkNumberOfCompletedTodosInLocalStorage(
472472
page: Page,
473473
expected: number,
474474
) {
475+
console.log('test');
475476
return await page.waitForFunction((e) => {
476477
return (
477478
JSON.parse(localStorage['react-todos']).filter(
478-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
479479
(todo: any) => todo.completed,
480480
).length === e
481481
);

0 commit comments

Comments
 (0)