import { extend } from '../Object'; describe('extend', () => { it('returns an object combined 2 objects', () => { expect(extend({ foo: 1 })({ bar: 2 })).toEqual({ foo: 1, bar: 2 }); }); });