mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
18488f47b0
* Fix linter * Add test env * Fix lint errors
35 lines
995 B
JavaScript
35 lines
995 B
JavaScript
/* eslint-env jest */
|
|
|
|
import shallowEquals from 'next-server/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)
|
|
})
|
|
})
|