mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
chore: fix linting
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import Liquid from 'src/liquid'
|
||||
import { expect, use } from 'chai'
|
||||
import * as chaiAsPromised from 'chai-as-promised'
|
||||
import IContext from 'src/scope/icontext';
|
||||
import IContext from 'src/scope/icontext'
|
||||
|
||||
use(chaiAsPromised)
|
||||
|
||||
|
||||
@@ -4,11 +4,11 @@ import { expect } from 'chai'
|
||||
describe('LiquidOptions', function () {
|
||||
describe('#normalize ()', function () {
|
||||
it('should normalize string typed root array', function () {
|
||||
const options = normalize({root: 'foo'})
|
||||
const options = normalize({ root: 'foo' })
|
||||
expect(options.root).to.eql(['foo'])
|
||||
})
|
||||
it('should normalize null typed root as empty array', function () {
|
||||
const options = normalize({root: null} as any)
|
||||
const options = normalize({ root: null } as any)
|
||||
expect(options.root).to.eql([])
|
||||
})
|
||||
})
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import * as chai from 'chai'
|
||||
import Scope from 'src/scope/scope'
|
||||
import IContext from 'src/scope/icontext';
|
||||
import IContext from 'src/scope/icontext'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
||||
Reference in New Issue
Block a user