mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 14:00:39 -07:00
feat: promise support for drops, working on #65
This commit is contained in:
@@ -33,9 +33,9 @@ describe('filters/array', function () {
|
||||
' | split: ", " %}{{ my_array | size }}',
|
||||
'4')
|
||||
})
|
||||
it('should also be used with dot notation - string',
|
||||
it('should be respected with <string>.size notation',
|
||||
() => test('{% assign my_string = "Ground control to Major Tom." %}{{ my_string.size }}', '28'))
|
||||
it('should also be used with dot notation - array',
|
||||
it('should be respected with <array>.size notation',
|
||||
() => test('{% assign my_array = "apples, oranges, peaches, plums" | split: ", " %}{{ my_array.size }}', '4'))
|
||||
})
|
||||
describe('slice', function () {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import Liquid from '../../../../src/liquid'
|
||||
import { expect, use } from 'chai'
|
||||
import * as chaiAsPromised from 'chai-as-promised'
|
||||
import { Context } from '../../../../src/scope/scope'
|
||||
import { Context } from '../../../../src/scope/context'
|
||||
|
||||
use(chaiAsPromised)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user