2017-01-12 04:14:49 +00:00
|
|
|
/* global describe, it, expect */
|
|
|
|
|
|
|
|
import shallowEquals from '../../dist/lib/shallow-equals'
|
|
|
|
|
|
|
|
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)
|
|
|
|
})
|
|
|
|
})
|