mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 22:10:41 -07:00
fix: array output now join with "" instead of ","
This commit is contained in:
+1
-1
@@ -103,7 +103,7 @@ describe('Issues', function () {
|
||||
const html = await engine.parseAndRender(
|
||||
`{{ 'a \n b \n c' | newline_to_br | split: '<br />' }}`
|
||||
)
|
||||
expect(html).to.equal('a ,\n b ,\n c')
|
||||
expect(html).to.equal('a \n b \n c')
|
||||
})
|
||||
it('#342 New lines in logical operator', async () => {
|
||||
const engine = new Liquid()
|
||||
|
||||
Reference in New Issue
Block a user