From f7b2e4b071220f27c3550c0743a3ab716de503ce Mon Sep 17 00:00:00 2001 From: min23asdw Date: Mon, 23 Mar 2026 00:40:24 +0700 Subject: [PATCH] test: add browser test for Jsonata Query $base64decode Ref: #2063 --- tests/browser/02_ops.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/browser/02_ops.js b/tests/browser/02_ops.js index 5ab55451..5da2b27c 100644 --- a/tests/browser/02_ops.js +++ b/tests/browser/02_ops.js @@ -218,6 +218,7 @@ module.exports = { testOpHtml(browser, "JSON Beautify", "{a:1}", ".json-dict .json-literal", "1"); // testOp(browser, "JSON Minify", "test input", "test_output"); // testOp(browser, "JSON to CSV", "test input", "test_output"); + testOp(browser, "Jsonata Query", '{}', '"Hello World!"', ['$base64decode("SGVsbG8gV29ybGQh")']); // testOp(browser, "JWT Decode", "test input", "test_output"); // testOp(browser, "JWT Sign", "test input", "test_output"); // testOp(browser, "JWT Verify", "test input", "test_output");