@@ -36,7 +36,7 @@ describe('firebaseConnect', () => {
3636 expect ( leaf ) . to . have . prop ( 'pass' , 'through' )
3737 } )
3838
39- it ( 'enebles watchers on mount' , async ( ) => {
39+ it ( 'enables watchers on mount' , async ( ) => {
4040 const { dispatch } = createContainer ( {
4141 hoc : withFirebaseConnect ,
4242 additionalComponentProps : { dynamic : 'start' }
@@ -51,7 +51,7 @@ describe('firebaseConnect', () => {
5151 ) . to . be . true
5252 } )
5353
54- it ( 'disables watchers on unmount' , async ( ) => {
54+ it ( 'dispatches "@@reactReduxFirebase/UNSET_LISTENER" action when listeners are detached on unmount' , async ( ) => {
5555 const { wrapper, dispatch } = createContainer ( {
5656 hoc : withFirebaseConnect ,
5757 additionalComponentProps : { dynamic : 'start' }
@@ -67,7 +67,7 @@ describe('firebaseConnect', () => {
6767 ) . to . be . true
6868 } )
6969
70- it ( 'does not change watchers props changes that do not change listener paths' , async ( ) => {
70+ it ( 'does not dispatch new actions for props changes which do not impact listener paths' , async ( ) => {
7171 const { wrapper, dispatch } = createContainer ( {
7272 hoc : withFirebaseConnect ,
7373 additionalComponentProps : { dynamic : 'start' }
0 commit comments