mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 21:00:40 -07:00
chore: migrate test cases from Chai to Jest
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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)
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user