File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -344,17 +344,6 @@ describe('grpc/main', () => {
344
344
expect ( m2 . mock . calls [ 0 ] [ 0 ] . items [ 0 ] . key ) . toEqual ( "myconfigkey1" ) ;
345
345
expect ( m2 . mock . calls [ 0 ] [ 0 ] . items [ 0 ] . value ) . toEqual ( "key1_mynewvalue" ) ;
346
346
} ) ;
347
-
348
- it ( 'should be able to subscribe to configuration item changes on specific keys through a second stream' , async ( ) => {
349
- const m = jest . fn ( async ( _res : SubscribeConfigurationResponse ) => { return ; } ) ;
350
-
351
- await client . configuration . subscribeWithKeys ( "config-redis" , [ "myconfigkey1" ] , m ) ;
352
- await DockerUtils . executeDockerCommand ( "dapr_redis redis-cli MSET myconfigkey1 key1_mynewvalue||1" ) ;
353
-
354
- expect ( m . mock . calls . length ) . toEqual ( 1 ) ;
355
- expect ( m . mock . calls [ 0 ] [ 0 ] . items [ 0 ] . key ) . toEqual ( "myconfigkey1" ) ;
356
- expect ( m . mock . calls [ 0 ] [ 0 ] . items [ 0 ] . value ) . toEqual ( "key1_mynewvalue" ) ;
357
- } ) ;
358
347
} ) ;
359
348
360
349
// Note: actors require an external dependency and are disabled by default for now until we can have actors in Javascript
You can’t perform that action at this time.
0 commit comments