2018-10-20 15:00:01 +00:00
|
|
|
/* eslint-env jest */
|
2017-01-12 04:14:49 +00:00
|
|
|
|
2018-11-28 14:03:02 +00:00
|
|
|
import shallowEquals from 'next-server/dist/lib/router/shallow-equals'
|
2017-01-12 04:14:49 +00:00
|
|
|
|
|
|
|
describe('Shallow Equals', () => {
|
|
|
|
it('should be true if both objects are the same', () => {
|
|
|
|
const a = { aa: 10 }
|
|
|
|
expect(shallowEquals(a, a)).toBe(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should be true if both objects are similar', () => {
|
|
|
|
const a = { aa: 10, bb: 30 }
|
|
|
|
const b = { aa: 10, bb: 30 }
|
|
|
|
expect(shallowEquals(a, b)).toBe(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should be false if objects have different keys', () => {
|
|
|
|
const a = { aa: 10, bb: 30 }
|
|
|
|
const b = { aa: 10, cc: 50 }
|
|
|
|
expect(shallowEquals(a, b)).toBe(false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should be false if objects have same keys but different values', () => {
|
|
|
|
const a = { aa: 10, bb: 30 }
|
|
|
|
const b = { aa: 10, bb: 50 }
|
|
|
|
expect(shallowEquals(a, b)).toBe(false)
|
|
|
|
})
|
|
|
|
|
2017-01-29 10:32:29 +00:00
|
|
|
it('should be false if objects matched deeply', () => {
|
2017-01-12 04:14:49 +00:00
|
|
|
const a = { aa: 10, bb: { a: 10 } }
|
|
|
|
const b = { aa: 10, bb: { a: 10 } }
|
|
|
|
expect(shallowEquals(a, b)).toBe(false)
|
|
|
|
})
|
|
|
|
})
|