Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openpgpjs/openpgpjs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlarabr <larabr+github@protonmail.com>2022-08-08 14:28:40 +0300
committerGitHub <noreply@github.com>2022-08-08 14:28:40 +0300
commit50fa974dcc22c9e10ba348dbc63cda693cdb9c1e (patch)
tree982ecd99d6736aaebb128f549914624c531923c8
parent08eef424a023595b76cda0deaadf062f00ce938c (diff)
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.
-rw-r--r--test/unittests.js2
1 files changed, 1 insertions, 1 deletions
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')();
});