Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tests failing in IE #7461

Merged
merged 7 commits into from
Nov 1, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tests: add profiles to emulate legacy IE versions in IE11
I can confirm that only IE10 profile is working.

Sample commandline:

npm run test-nolint -- --browsers IE,IE10
  • Loading branch information
johndoe committed Feb 25, 2021
commit 5f343e16f39ab9c867dbc7b69e69ac72080091b4
12 changes: 12 additions & 0 deletions spec/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,18 @@ module.exports = function (config) {
}
}
}
},
IE8: { // not working in IE 11!!
base: 'IE',
'X-UA-Compatible': 'IE=EmulateIE8'
},
IE9: { // not working in IE 11!!
base: 'IE',
'X-UA-Compatible': 'IE=EmulateIE9'
},
IE10: {
base: 'IE',
'x-ua-compatible': 'IE=EmulateIE10'
}
},

Expand Down