This commit is contained in:
Adria Navarro 2024-01-23 19:31:22 +01:00
parent 76780d1c86
commit afd5b593f8
1 changed files with 2 additions and 2 deletions

View File

@ -61,10 +61,10 @@ describe("test the array helpers", () => {
})
it("should allow use of the before helper", async () => {
const output = await processString("{{before array 2}}", {
const output = await processString("{{before array 3}}", {
array,
})
expect(output).toBe("hi,person,how")
expect(output).toBe("hi,person")
})
it("should allow use of the filter helper", async () => {