2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-15 15:53:30 +00:00

Improved testing to account for race conditions

This commit is contained in:
n1474335
2024-05-16 14:29:32 +01:00
parent d1a0da3f8d
commit 37398188f9
2 changed files with 37 additions and 3 deletions

View File

@@ -430,7 +430,7 @@ function bakeOp(browser, opName, input, args=[]) {
*/
function testOp(browser, opName, input, output, args=[]) {
bakeOp(browser, opName, input, args);
utils.expectOutput(browser, output);
utils.expectOutput(browser, output, true);
}
/** @function