test(playwright): update to playwright 1.23 (#25645)

This commit is contained in:
Liam DeBeasi
2022-07-15 12:22:55 -04:00
committed by GitHub
parent a6f3ae67ab
commit 48ebb9c820
5 changed files with 48 additions and 1460 deletions

View File

@ -65,7 +65,7 @@ test.describe('toggle: basic', () => {
test('should pass properties down to hidden input', async ({ page }) => {
const toggle = page.locator('#grapeChecked');
await expect(toggle).toBeDisabled();
await expect(toggle).toHaveJSProperty('disabled', true);
await expect(toggle).toHaveJSProperty('value', 'grape');
await expect(toggle).toHaveJSProperty('name', 'grape');