From 50fa974dcc22c9e10ba348dbc63cda693cdb9c1e Mon Sep 17 00:00:00 2001 From: larabr Date: Mon, 8 Aug 2022 13:28:40 +0200 Subject: [PATCH] CI: run worker tests first to give enough time to download the required scripts (#1550) This should fix issues with Safari 13 not managing to load the worker in BrowserStack Automate. --- test/unittests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unittests.js b/test/unittests.js index 13871f38..dc34eaf4 100644 --- a/test/unittests.js +++ b/test/unittests.js @@ -55,8 +55,8 @@ describe('Unit Tests', function () { }); } + require('./worker')(); require('./crypto')(); require('./general')(); - require('./worker')(); require('./security')(); });