1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/test/unit/shallow-equal.test.js
Tim Neutkens 75476a9136
[WIP] Webpack 4, react-error-overlay, react-loadable (#4639)
Webpack 4, react-error-overlay, react-loadable (major)
2018-07-24 11:24:40 +02:00

35 lines
1,000 B
JavaScript

/* global describe, it, expect */
import shallowEquals from 'next/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)
})
it('should be false if objects matched deeply', () => {
const a = { aa: 10, bb: { a: 10 } }
const b = { aa: 10, bb: { a: 10 } }
expect(shallowEquals(a, b)).toBe(false)
})
})