Add browser smoke test for Template operation

This commit is contained in:
GCHQDeveloper581 2026-03-27 10:51:35 +00:00
parent 3c6b1134dd
commit 05bb72e781
No known key found for this signature in database
GPG Key ID: 6222E059A3DF595C

View File

@ -354,6 +354,7 @@ module.exports = {
// testOp(browser, "Tail", "test input", "test_output"); // testOp(browser, "Tail", "test input", "test_output");
// testOp(browser, "Take bytes", "test input", "test_output"); // testOp(browser, "Take bytes", "test input", "test_output");
testOp(browser, "Tar", "test input", /^file\.txt\x00{92}/); testOp(browser, "Tar", "test input", /^file\.txt\x00{92}/);
testOp(browser, "Template", "{\"one\": 1, \"two\": 2}", "1 2", ["{{ one }} {{ two }}"]);
testOpHtml(browser, "Text Encoding Brute Force", "test input", "tr:nth-of-type(4) td:last-child", /t\u2400e\u2400s\u2400t\u2400/); testOpHtml(browser, "Text Encoding Brute Force", "test input", "tr:nth-of-type(4) td:last-child", /t\u2400e\u2400s\u2400t\u2400/);
// testOp(browser, "To BCD", "test input", "test_output"); // testOp(browser, "To BCD", "test input", "test_output");
// testOp(browser, "To Base", "test input", "test_output"); // testOp(browser, "To Base", "test input", "test_output");