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.
This commit is contained in:
larabr 2022-08-08 13:28:40 +02:00 committed by GitHub
parent 08eef424a0
commit 50fa974dcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,8 +55,8 @@ describe('Unit Tests', function () {
});
}
require('./worker')();
require('./crypto')();
require('./general')();
require('./worker')();
require('./security')();
});