mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 04:40:39 -07:00
style: introduce @typescript-eslint/recommended
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
import * as chai from 'chai'
|
||||
import { isRange } from '../../../src/parser/lexical'
|
||||
|
||||
const expect = chai.expect
|
||||
const lexical = require('../../../src/parser/lexical')
|
||||
|
||||
describe('lexical', function () {
|
||||
it('should test range literal', function () {
|
||||
expect(lexical.isRange('(12..32)')).to.equal(true)
|
||||
expect(lexical.isRange('(12..foo)')).to.equal(true)
|
||||
expect(lexical.isRange('(foo.bar..foo)')).to.equal(true)
|
||||
expect(isRange('(12..32)')).to.equal(true)
|
||||
expect(isRange('(12..foo)')).to.equal(true)
|
||||
expect(isRange('(foo.bar..foo)')).to.equal(true)
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user