mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-20 15:00:42 -07:00
style: fix code style
This commit is contained in:
+3
-3
@@ -390,7 +390,7 @@ describe('Issues', function () {
|
||||
const html = await liquid.parseAndRender(tpl, ctx)
|
||||
expect(html.trim()).to.equal('<a href="https://example.com">Lot more code here</a>')
|
||||
})
|
||||
it('#70 strip multiline content of <style>', async() => {
|
||||
it('#70 strip multiline content of <style>', async () => {
|
||||
const str = `
|
||||
<style type="text/css">
|
||||
.test-one-line {display: none;}
|
||||
@@ -400,13 +400,13 @@ describe('Issues', function () {
|
||||
const html = await engine.parseAndRender(template, { str })
|
||||
expect(html).to.match(/^\s*$/)
|
||||
})
|
||||
it('#589 Arrays should compare values', async() => {
|
||||
it('#589 Arrays should compare values', async () => {
|
||||
const engine = new Liquid()
|
||||
const template = `
|
||||
{% assign people1 = "alice, bob, carol" | split: ", " -%}
|
||||
{% assign people2 = "alice, bob, carol" | split: ", " -%}
|
||||
{% if people1 == people2 %}true{%else%}false{% endif %}
|
||||
`;
|
||||
`
|
||||
const html = await engine.parseAndRender(template)
|
||||
expect(html).to.contain('true')
|
||||
})
|
||||
|
||||
@@ -4,7 +4,9 @@ import { Liquid } from '../../../src/liquid'
|
||||
|
||||
describe('filters/html', function () {
|
||||
let liquid: Liquid
|
||||
beforeEach(() => liquid = new Liquid())
|
||||
beforeEach(() => {
|
||||
liquid = new Liquid()
|
||||
})
|
||||
describe('escape', function () {
|
||||
it('should escape \' and &', function () {
|
||||
return test('{{ "Have you read \'James & the Giant Peach\'?" | escape }}',
|
||||
|
||||
@@ -57,7 +57,7 @@ describe('Expression', function () {
|
||||
const ctx = new Context({
|
||||
arr1: [1, 2],
|
||||
arr2: [1, 2],
|
||||
arr3: [1, 2, 3],
|
||||
arr3: [1, 2, 3]
|
||||
})
|
||||
expect(await toPromise(create('arr1==arr2').evaluate(ctx, false))).to.equal(true)
|
||||
expect(await toPromise(create('arr1==arr3').evaluate(ctx, false))).to.equal(false)
|
||||
|
||||
Reference in New Issue
Block a user