test: mark "fill color input" test as dailing on wk windows (#10792)
This commit is contained in:
parent
4d683cef7f
commit
3272af9f96
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Reference in a new issue