UNPKG

preact-material-components

Version:
14 lines (11 loc) 327 B
import update from '../../lib/update'; describe('update', () => { it('should export an function', () => { expect(update).to.be.a('function'); }); it('should update arrays', () => { const initialArray = [1, 2, 3]; const newArray = update(initialArray, {$push: [4]}); expect(newArray).to.eql([1, 2, 3, 4]); }); });