test: mark "fill color input" test as dailing on wk windows (#10792)

This commit is contained in:
Yury Semikhatsky 2021-12-08 09:39:14 -08:00 committed by GitHub
parent 4d683cef7f
commit 3272af9f96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,7 +105,8 @@ it('should fill color input', async ({ page }) => {
expect(await page.$eval('input', input => input.value)).toBe('#aaaaaa');
});
it('should throw on incorrect color value', async ({ page }) => {
it('should throw on incorrect color value', async ({ page, browserName, isWindows }) => {
it.skip(browserName === 'webkit' && isWindows, 'WebKit win does not support color inputs');
await page.setContent('<input type=color value="#e66465">');
const error1 = await page.fill('input', 'badvalue').catch(e => e);
expect(error1.message).toContain('Malformed value');