forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshallow-equal.test.js
More file actions
34 lines (28 loc) · 1001 Bytes
/
shallow-equal.test.js
File metadata and controls
34 lines (28 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* 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)
})
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)
})
})