fix(test): Disable spellcheck in our textarea tests (#203)

This commit is contained in:
Joel Einbinder 2019-12-10 14:53:26 -08:00 committed by Andrey Lushnikov
parent e8ec7e5118
commit c8067dbcde
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<title>Textarea test</title>
</head>
<body>
<textarea></textarea>
<textarea spellcheck="false"></textarea>
<input></input>
<div contenteditable="true"></div>
<script src='mouse-helper.js'></script>

View File

@ -71,7 +71,7 @@ module.exports.addTests = function({testRunner, expect, FFOX, CHROME, WEBKIT}) {
expect(newDimensions.width).toBe(Math.round(width + 104));
expect(newDimensions.height).toBe(Math.round(height + 104));
});
it.skip(WEBKIT)('should select the text with mouse', async({page, server}) => {
it('should select the text with mouse', async({page, server}) => {
await page.goto(server.PREFIX + '/input/textarea.html');
await page.focus('textarea');
const text = 'This is the text that we are going to try to select. Let\'s see how it goes.';