1
1
'use strict' ;
2
2
3
3
jest . dontMock ( '../../mixins/listener' ) ;
4
+ jest . dontMock ( '../../utils/compare-props' ) ;
4
5
jest . dontMock ( '../entity' ) ;
5
6
6
7
describe ( 'Entity' , function ( ) {
@@ -72,7 +73,9 @@ describe('Entity', function () {
72
73
73
74
describe ( 'updating' , function ( ) {
74
75
75
- it ( 'calls `setOptions` when receive new props' , function ( ) {
76
+ var parent = undefined ;
77
+
78
+ beforeEach ( function ( ) {
76
79
window . google . maps . Entity = function ( ) {
77
80
return {
78
81
setOptions : jest . genMockFunction ( )
@@ -83,19 +86,31 @@ describe('Entity', function () {
83
86
84
87
getInitialState : function getInitialState ( ) {
85
88
return {
86
- content : '1'
89
+ prop : '1'
87
90
} ;
88
91
} ,
89
92
render : function render ( ) {
90
- return React . createElement ( Entity , { ref : 'child' } ) ;
93
+ var prop = this . state . prop ;
94
+
95
+ return React . createElement ( Entity , { ref : 'child' , prop : prop } ) ;
91
96
}
92
97
} ) ;
93
- var parent = TestUtils . renderIntoDocument ( React . createElement ( Parent , null ) ) ;
98
+ parent = TestUtils . renderIntoDocument ( React . createElement ( Parent , null ) ) ;
99
+ } ) ;
100
+
101
+ it ( 'calls `setOptions` when receive new props' , function ( ) {
94
102
parent . setState ( {
95
- content : '2'
103
+ prop : '2'
96
104
} ) ;
97
105
expect ( parent . refs . child . entity . setOptions ) . toBeCalled ( ) ;
98
106
} ) ;
107
+
108
+ it ( 'does not call `setOptions` when props are the same' , function ( ) {
109
+ parent . setState ( {
110
+ prop : '1'
111
+ } ) ;
112
+ expect ( parent . refs . child . entity . setOptions ) . not . toBeCalled ( ) ;
113
+ } ) ;
99
114
} ) ;
100
115
101
116
describe ( 'getEntity' , function ( ) {
0 commit comments