Merge branch 'master' of github.com:gchq/CyberChef into simplify-recipe

This commit is contained in:
d98762625 2020-03-20 13:08:18 +00:00
commit a49d97f898
46 changed files with 9132 additions and 4884 deletions

View file

@ -96,6 +96,9 @@ import "./tests/DefangIP.mjs";
import "./tests/ParseUDP.mjs";
import "./tests/AvroToJSON.mjs";
import "./tests/Lorenz.mjs";
import "./tests/LuhnChecksum.mjs";
import "./tests/CipherSaber2.mjs";
import "./tests/Colossus.mjs";
// Cannot test operations that use the File type yet
@ -112,5 +115,8 @@ setLongTestFailure();
const logOpsTestReport = logTestReport.bind(null, testStatus);
TestRegister.runTests()
.then(logOpsTestReport);
(async function() {
const results = await TestRegister.runTests();
logOpsTestReport(results);
})();