One more fix.

This commit is contained in:
mike12345567 2024-07-22 18:22:04 +01:00
parent b611b0da33
commit e34257a018
1 changed files with 4 additions and 4 deletions

View File

@ -93,10 +93,10 @@ describe("Test that the string processing works correctly", () => {
it("should handle a complex statement", () => {
const response = convertToJS(
"This is the average: {{ join ( avg val1 val2 val3 ) val4 }}"
"This is the average: {{ join val1 ( avg val2 val3 val4 ) }}"
)
checkLines(response, [
'const var1 = helpers.join(helpers.avg($("val1"), $("val2"), $("val3")), $("val4"));',
'const var1 = helpers.join($("val1"), helpers.avg($("val2"), $("val3"), $("val4")));',
"return `This is the average: ${var1}`;",
])
})
@ -119,10 +119,10 @@ describe("Test that the string processing works correctly", () => {
it("should handle multiple complex statements", () => {
const response = convertToJS(
"average: {{ avg ( abs val1 ) val2 }} add: {{ add 1 2 }}"
"average: {{ avg val1 ( abs val2 ) }} add: {{ add 1 2 }}"
)
checkLines(response, [
'const var1 = helpers.avg(helpers.abs($("val1")), $("val2"));',
'const var1 = helpers.avg($("val1"), helpers.abs($("val2")));',
"const var2 = helpers.add(1, 2);",
"return `average: ${var1} add: ${var2}`;",
])