1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

Fixing complex test case.

This commit is contained in:
mike12345567 2021-04-30 16:21:59 +01:00
parent a7022de9b5
commit 2cd4e389a6

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)
})
})