Skip to content

Commit

Permalink
Disable screenshot test on IE
Browse files Browse the repository at this point in the history
  • Loading branch information
jason0x43 committed Nov 29, 2021
1 parent 28b98d3 commit f7e16e0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/functional/Session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,12 @@ registerSuite('Session', () => {
this.skip('screenshots not supported');
}

if (isInternetExplorer(session.capabilities)) {
// This test frequently, but not always, fails on IE -- disable it
// until it can be made more reliable.
this.skip('screenshot testing is unreliable');
}

const magic = [0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a];

this.async(60000);
Expand Down

0 comments on commit f7e16e0

Please sign in to comment.