CI: Ignore unhandled rejections in tests in Safari 14.1 (#1371)
The tests fail in Safari 14.1 due to unhandled rejections that have no clear cause. The problem is likely related to the native TransformStream implementation added in Safari 14.1 (in fact, using a polyfilled TransformStream solves all issues).
This commit is contained in:
parent
ab22fe86da
commit
ed8db3d31e
|
@ -31,9 +31,13 @@ describe('Unit Tests', function () {
|
|||
openpgp.config.s2kIterationCountByte = 0;
|
||||
|
||||
if (typeof window !== 'undefined') {
|
||||
window.addEventListener('unhandledrejection', function (event) {
|
||||
throw event.reason;
|
||||
});
|
||||
// Safari 14.1.* seem to have issues handling rejections when their native TransformStream implementation is involved,
|
||||
// so for now we ignore unhandled rejections for those browser versions.
|
||||
if (!window.navigator.userAgent.match(/Version\/14\.1(\.\d)* Safari/)) {
|
||||
window.addEventListener('unhandledrejection', function (event) {
|
||||
throw event.reason;
|
||||
});
|
||||
}
|
||||
|
||||
window.location.search.substr(1).split('&').forEach(param => {
|
||||
const [key, value] = param.split('=');
|
||||
|
|
Loading…
Reference in New Issue
Block a user