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