Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('should ignore un-provided values for second and after calls', () => {
defaults({
reducers: {},
historyMode: 'hash'
})
expect(options.historyMode).toBe('hash')
defaults({})
expect(options.historyMode).toBe('hash')
})
it('should ignore un-provided values for second and after calls', () => {
defaults({
reducers: {},
historyMode: 'hash'
})
expect(options.historyMode).toBe('hash')
defaults({})
expect(options.historyMode).toBe('hash')
})