Files
liquidjs/test/e2e/eval-value-sync.spec.ts
T

11 lines
284 B
TypeScript

import { Liquid } from '../..'
describe('#evalValueSync()', function () {
var engine: Liquid
beforeEach(() => { engine = new Liquid() })
it('should eval value syncly', async function () {
return expect(engine.evalValueSync('true', { opts: {} } as any)).toBe(true)
})
})