From ed8db3d31e941349352d553199bfd3074e034e0b Mon Sep 17 00:00:00 2001 From: larabr Date: Fri, 9 Jul 2021 16:35:40 +0200 Subject: [PATCH] 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). --- test/unittests.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/test/unittests.js b/test/unittests.js index a29bb818..13871f38 100644 --- a/test/unittests.js +++ b/test/unittests.js @@ -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('=');