Use lodash-id

This commit is contained in:
typicode
2017-02-20 23:57:30 +01:00
parent fbdeb31794
commit 92532128da
4 changed files with 7 additions and 7 deletions

View File

@ -1,13 +1,13 @@
const assert = require('assert')
const _ = require('lodash')
const _db = require('underscore-db')
const lodashId = require('lodash-id')
const mixins = require('../../src/server/mixins')
describe('mixins', () => {
let db
before(() => {
_.mixin(_db)
_.mixin(lodashId)
_.mixin(mixins)
})