mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-19 06:20:38 -07:00
refactor: remove mock-fs from dev dependency
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import * as chai from 'chai'
|
||||
import assert from '../../../src/util/assert'
|
||||
import assert from 'src/util/assert'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ import * as sinonChai from 'sinon-chai'
|
||||
const expect = chai.expect
|
||||
chai.use(sinonChai)
|
||||
|
||||
const P = require('../../../src/util/promise')
|
||||
const P = require('src/util/promise')
|
||||
|
||||
describe('util/promise', function () {
|
||||
describe('.anySeries()', function () {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import * as chai from 'chai'
|
||||
import t from '../../../src/util/strftime'
|
||||
import t from 'src/util/strftime'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import * as chai from 'chai'
|
||||
import * as sinonChai from 'sinon-chai'
|
||||
import * as sinon from 'sinon'
|
||||
import { RenderError, RenderBreakError } from '../../../src/util/error'
|
||||
import * as _ from '../../../src/util/underscore'
|
||||
import { RenderError, RenderBreakError } from 'src/util/error'
|
||||
import * as _ from 'src/util/underscore'
|
||||
|
||||
const expect = chai.expect
|
||||
chai.use(sinonChai)
|
||||
|
||||
Reference in New Issue
Block a user