Skip to content

Commit 3f1680c

Browse files
committed
Another fix
1 parent 17cb577 commit 3f1680c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/helper/WebDriver_test.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ describe('WebDriver', function () {
695695
})
696696

697697
// TO-DO: those tests are flaky so skipping them for now
698-
describe.skip('popup : #acceptPopup, #seeInPopup, #cancelPopup', async () => {
698+
describe('popup : #acceptPopup, #seeInPopup, #cancelPopup', async () => {
699699
it('should accept popup window', async () => {
700700
await wd.amOnPage('/form/popup')
701701
await wd.waitForText('Confirm', 5)
@@ -719,6 +719,7 @@ describe('WebDriver', function () {
719719
.amOnPage('/form/popup')
720720
.then(() => wd.waitForText('Alert', 5))
721721
.then(() => wd.click('Alert'))
722+
.then(() => wd.waitForText('Really?', 5))
722723
.then(() => wd.seeInPopup('Really?'))
723724
.then(() => wd.cancelPopup())
724725
})
@@ -836,7 +837,7 @@ describe('WebDriver', function () {
836837
})
837838

838839
// run locally passed, failed on CI.
839-
it('should set window size on new session', () => {
840+
it.skip('should set window size on new session', () => {
840841
return wd
841842
.amOnPage('/info')
842843
.then(() => wd._session())

0 commit comments

Comments
 (0)