Set up notification store for integration tests

This commit is contained in:
Max Brunsfeld 2023-10-12 14:43:36 -07:00
parent 1e1256dbdd
commit fed3ffb681
4 changed files with 8 additions and 5 deletions

View file

@ -231,7 +231,8 @@ impl TestServer {
workspace::init(app_state.clone(), cx);
audio::init((), cx);
call::init(client.clone(), user_store.clone(), cx);
channel::init(&client, user_store, cx);
channel::init(&client, user_store.clone(), cx);
notifications::init(client.clone(), user_store, cx);
});
client