Skip to content

Commit 7fc9768

Browse files
Remove unneeded test case
Signed-off-by: Xavier Geerinck <[email protected]>
1 parent 95a6d3f commit 7fc9768

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

test/e2e/main.grpc.test.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -344,17 +344,6 @@ describe('grpc/main', () => {
344344
expect(m2.mock.calls[0][0].items[0].key).toEqual("myconfigkey1");
345345
expect(m2.mock.calls[0][0].items[0].value).toEqual("key1_mynewvalue");
346346
});
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-
});
358347
});
359348

360349
// Note: actors require an external dependency and are disabled by default for now until we can have actors in Javascript

0 commit comments

Comments
 (0)