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:
larabr 2021-07-09 16:35:40 +02:00 committed by GitHub
parent ab22fe86da
commit ed8db3d31e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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('=');