forked from DevExpress/testcafe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
corrected options for regression test DevExpressgh-889, fixed client …
…legacy press test (DevExpress#1044) * corrected options for regression test DevExpressgh-889, fixed legacy client press test * Appveyor config fixed
- Loading branch information
1 parent
c5db87a
commit 9df62eb
Showing
3 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
describe('[Regression](GH-889)', function () { | ||
it('Should not call blur for table', function () { | ||
return runTests('testcafe-fixtures/index.test.js', 'Click on children of table', { skip: 'ie' }); | ||
return runTests('testcafe-fixtures/index.test.js', 'Click on children of table', { skip: ['ie', 'ie 9', 'ie 10'] }); | ||
}); | ||
|
||
it('Should not call blur for table (for IE)', function () { | ||
return runTests('testcafe-fixtures/index.test.js', 'Click on children of table (for IE)', { only: 'ie' }); | ||
return runTests('testcafe-fixtures/index.test.js', 'Click on children of table (for IE)', { only: ['ie', 'ie 9', 'ie 10'] }); | ||
}); | ||
}); |