We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d104656 commit 8f435cfCopy full SHA for 8f435cf
test/helper/webapi.js
@@ -316,11 +316,13 @@ module.exports.tests = function () {
316
317
// Could not get double click to work
318
describe('#doubleClick', () => {
319
- it('it should doubleClick', async () => {
+ it('it should doubleClick', async function () {
320
+ if (isHelper('TestCafe')) this.skip() // jQuery CDN not accessible in test environment
321
+
322
await I.amOnPage('/form/doubleclick')
- await I.dontSee('Done')
323
+ await I.dontSee('Done!')
324
await I.doubleClick('#block')
- await I.see('Done')
325
+ await I.see('Done!')
326
})
327
328
0 commit comments