mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
11 lines
284 B
TypeScript
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)
|
|
})
|
|
})
|