mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
import Liquid from 'src/liquid'
|
|
import { expect } from 'chai'
|
|
|
|
describe('LiquidOptions#strict_*', function () {
|
|
let engine: Liquid
|
|
const ctx = {}
|
|
beforeEach(function () {
|
|
engine = new Liquid({
|
|
root: '/root/',
|
|
extname: '.html'
|
|
})
|
|
})
|
|
it('should not throw when strict_variables false (default)', async function () {
|
|
const html = await engine.parseAndRender('before{{notdefined}}after', ctx)
|
|
return expect(html).to.equal('beforeafter')
|
|
})
|
|
it('should throw when strict_variables true', function () {
|
|
const tpl = engine.parse('before{{notdefined}}after')
|
|
const opts = {
|
|
strict_variables: true
|
|
}
|
|
return expect(engine.render(tpl, ctx, opts)).to
|
|
.be.rejectedWith(/undefined variable: notdefined/)
|
|
})
|
|
it('should pass strict_variables to render by parseAndRender', function () {
|
|
const html = 'before{{notdefined}}after'
|
|
const opts = {
|
|
strict_variables: true
|
|
}
|
|
return expect(engine.parseAndRender(html, ctx, opts)).to
|
|
.be.rejectedWith(/undefined variable: notdefined/)
|
|
})
|
|
})
|