@@ -21,7 +21,6 @@ describe('context', () => {
2121 const mockContextKeys = {
2222 connectContext : Symbol ( 'connect' ) ,
2323 disconnectContext : Symbol ( 'disconnect' ) ,
24- contextEventKey : Symbol ( 'event' ) ,
2524 } ;
2625
2726 setContextKeys ( mockContextKeys ) ;
@@ -30,20 +29,17 @@ describe('context', () => {
3029 expect ( retrievedKeys ) . toBe ( mockContextKeys ) ;
3130 expect ( retrievedKeys . connectContext ) . toBe ( mockContextKeys . connectContext ) ;
3231 expect ( retrievedKeys . disconnectContext ) . toBe ( mockContextKeys . disconnectContext ) ;
33- expect ( retrievedKeys . contextEventKey ) . toBe ( mockContextKeys . contextEventKey ) ;
3432 } ) ;
3533
3634 it ( 'should throw when attempting to set context keys multiple times' , ( ) => {
3735 const mockContextKeys1 = {
3836 connectContext : Symbol ( 'connect1' ) ,
3937 disconnectContext : Symbol ( 'disconnect1' ) ,
40- contextEventKey : Symbol ( 'event1' ) ,
4138 } ;
4239
4340 const mockContextKeys2 = {
4441 connectContext : Symbol ( 'connect2' ) ,
4542 disconnectContext : Symbol ( 'disconnect2' ) ,
46- contextEventKey : Symbol ( 'event2' ) ,
4743 } ;
4844
4945 setContextKeys ( mockContextKeys1 ) ;
0 commit comments