@@ -18,6 +18,7 @@ describe('ComponentEventsObserver', () => {
18
18
const searchBarCancelPressedFn = jest . fn ( ) ;
19
19
const previewCompletedFn = jest . fn ( ) ;
20
20
const modalDismissedFn = jest . fn ( ) ;
21
+ const modalAttemptedToDismissFn = jest . fn ( ) ;
21
22
const screenPoppedFn = jest . fn ( ) ;
22
23
let subscription : EventSubscription ;
23
24
let uut : ComponentEventsObserver ;
@@ -57,6 +58,10 @@ describe('ComponentEventsObserver', () => {
57
58
modalDismissedFn ( event ) ;
58
59
}
59
60
61
+ modalAttemptedToDismiss ( event : any ) {
62
+ modalAttemptedToDismissFn ( event ) ;
63
+ }
64
+
60
65
searchBarUpdated ( event : any ) {
61
66
searchBarUpdatedFn ( event ) ;
62
67
}
@@ -108,6 +113,10 @@ describe('ComponentEventsObserver', () => {
108
113
modalDismissedFn ( event ) ;
109
114
}
110
115
116
+ modalAttemptedToDismiss ( event : any ) {
117
+ modalAttemptedToDismissFn ( event ) ;
118
+ }
119
+
111
120
searchBarUpdated ( event : any ) {
112
121
searchBarUpdatedFn ( event ) ;
113
122
}
@@ -153,14 +162,14 @@ describe('ComponentEventsObserver', () => {
153
162
} ) ;
154
163
155
164
it ( `bindComponent should use optional componentId if component has a componentId in props` , ( ) => {
156
- const tree = renderer . create ( < UnboundScreen componentId = { 'doNotUseThisId' } /> ) ;
165
+ const tree = renderer . create ( < UnboundScreen componentId = { 'doNotUseThisId' } /> ) ;
157
166
uut . bindComponent ( tree . getInstance ( ) as any , 'myCompId' )
158
167
159
168
expect ( tree . toJSON ( ) ) . toBeDefined ( ) ;
160
-
169
+
161
170
uut . notifyComponentDidAppear ( { componentId : 'dontUseThisId' , componentName : 'doesnt matter' , componentType : 'Component' } ) ;
162
171
expect ( didAppearFn ) . not . toHaveBeenCalled ( ) ;
163
-
172
+
164
173
165
174
uut . notifyComponentDidAppear ( { componentId : 'myCompId' , componentName : 'doesnt matter' , componentType : 'Component' } ) ;
166
175
expect ( didAppearFn ) . toHaveBeenCalledTimes ( 1 ) ;
@@ -188,6 +197,10 @@ describe('ComponentEventsObserver', () => {
188
197
expect ( modalDismissedFn ) . toHaveBeenCalledTimes ( 1 ) ;
189
198
expect ( modalDismissedFn ) . toHaveBeenLastCalledWith ( { componentId : 'myCompId' , modalsDismissed : 1 } )
190
199
200
+ uut . notifyModalAttemptedToDismiss ( { componentId : 'myCompId' } ) ;
201
+ expect ( modalAttemptedToDismissFn ) . toHaveBeenCalledTimes ( 1 ) ;
202
+ expect ( modalAttemptedToDismissFn ) . toHaveBeenLastCalledWith ( { componentId : 'myCompId' } )
203
+
191
204
uut . notifySearchBarUpdated ( { componentId : 'myCompId' , text : 'theText' , isFocused : true } ) ;
192
205
expect ( searchBarUpdatedFn ) . toHaveBeenCalledTimes ( 1 ) ;
193
206
expect ( searchBarUpdatedFn ) . toHaveBeenCalledWith ( { componentId : 'myCompId' , text : 'theText' , isFocused : true } ) ;
0 commit comments