test: revert stray change in page-check (#34959)

This commit is contained in:
Yury Semikhatsky 2025-02-27 17:45:01 -08:00 committed by GitHub
parent 31f4a05eb6
commit fe9b4a841e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 1 deletions

View File

@ -21,7 +21,6 @@ it('should check the box @smoke', async ({ page }) => {
await page.setContent(`<input id='checkbox' type='checkbox'></input>`);
await page.check('input');
expect(await page.evaluate(() => window['checkbox'].checked)).toBe(true);
await expect(page.locator('input[type="checkbox"]')).toBeChecked({ timeout: 1000 });
});
it('should not check the checked box', async ({ page }) => {