mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-20 06:50:47 -07:00
style: fix lint
This commit is contained in:
@@ -139,8 +139,8 @@ describe('filters/array', function () {
|
|||||||
return test(tpl, { arr: [b, c, a, c] }, 'Alice Bob Carol Carol')
|
return test(tpl, { arr: [b, c, a, c] }, 'Alice Bob Carol Carol')
|
||||||
})
|
})
|
||||||
it('should not change the original array', () => {
|
it('should not change the original array', () => {
|
||||||
const arr = ["one", "two", "three", "four", "five"]
|
const arr = ['one', 'two', 'three', 'four', 'five']
|
||||||
return test("{{arr | sort}} {{arr}}", { arr }, 'fivefouronethreetwo onetwothreefourfive')
|
return test('{{arr | sort}} {{arr}}', { arr }, 'fivefouronethreetwo onetwothreefourfive')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
describe('uniq', function () {
|
describe('uniq', function () {
|
||||||
|
|||||||
Reference in New Issue
Block a user