Replace deepmerge with lodash.merge

This commit is contained in:
Jakub Juszczak
2017-09-12 10:53:31 +02:00
parent 41736c840d
commit e4977a6be7
4 changed files with 8 additions and 8 deletions

View File

@@ -41,8 +41,8 @@ describe('mergeOptions.js', () => {
it('should add c if c is new', () => {
const ac = mergeOptions(a, c)
expect(ac).to.have.property('a').and.to.equal('a')
expect(ac).to.have.property('b').and.to.equal('a')
expect(ac).to.have.property('a').and.to.equal('b')
expect(ac).to.have.property('b').and.to.equal('b')
expect(ac).to.have.property('c').and.to.equal('c')
})