UNPKG

botframework-webchat-component

Version:
10 lines (7 loc) 245 B
import mapMap from './mapMap'; test('multiple a map by 10', () => { const map = { ten: 1, twenty: 2 }; const actual = mapMap(map, value => value * 10); expect(actual).toEqual({ ten: 10, twenty: 20 }); expect(actual).not.toBe(map); });