mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
12 lines
337 B
TypeScript
12 lines
337 B
TypeScript
import { normalize } from '../../src/liquid-options'
|
|
import { expect } from 'chai'
|
|
|
|
describe('liquid-options', () => {
|
|
describe('.normalize()', () => {
|
|
it('should set cache to undefined if specified to falsy', () => {
|
|
const options = normalize({ cache: false })
|
|
expect(options.cache).to.equal(undefined)
|
|
})
|
|
})
|
|
})
|