Fix bell icons on room list hover being black squares (#135)

* Fix bell icons on room list hover being black squares

The EchoStore wasn't being set up and therefore missed the client being
injected.

Patch from @t3chguy.

* Fix tests

...by mocking out createClient so it doesn't try to start a real client.

* More mocks

* Don't need this anymore either
This commit is contained in:
David Baker 2024-10-09 23:44:10 +01:00 committed by GitHub
parent a2cee6bbb4
commit 5f113c4db0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 12 deletions

View file

@ -29,6 +29,8 @@ export abstract class ReadyWatchingStore extends EventEmitter implements IDestro
super();
this.dispatcherRef = this.dispatcher.register(this.onAction);
ReadyWatchingStore.instances.push(this);
}
public get matrixClient(): MatrixClient | null {