1
0
Fork 0
mirror of synced 2024-06-27 02:20:35 +12:00

Fixing complex test case.

This commit is contained in:
mike12345567 2021-04-30 16:21:59 +01:00
parent a6e282c19b
commit 4068a29624

View file

@ -281,7 +281,7 @@ describe("Test the object/array helper", () => {
{ price: 30 },
]
}
const output = await processString("{{ sum ( pluck items 'price' ) }}", context)
const output = await processString("{{ literal ( sum ( pluck items 'price' ) ) }}", context)
expect(output).toBe(50)
})
})