Fix tests
Some checks failed
CI / lint (push) Failing after 1m4s
CI / Build and test (, 1.73.0) (push) Successful in 6m56s
CI / Build and test (, beta) (push) Successful in 7m15s
CI / Build and test (, nightly) (push) Successful in 6m45s

This commit is contained in:
2023-11-25 21:24:47 +01:00
parent f270ef25b4
commit 2385f33e6b
2 changed files with 17 additions and 1 deletions

View File

@ -59,3 +59,19 @@ unread_message = "red"
unread_event = "bold"
# If nothing happened since you last looked at the room
uneventful = ""
# Style of usernames in chat logs
[style.user.color]
# Colors that can be assigned to users' names, picked semi-randomly
colors = [
"cyan",
"magenta",
"green",
"brown",
"lightblue",
"default",
"lightcyan",
"lightmagenta",
"lightgreen",
"blue",
]

View File

@ -26,7 +26,7 @@ use ratatrix::components::Backlog;
use ratatrix::config::Config;
use ratatrix::widgets::Prerender;
fn config() -> Config {
fn config() -> Arc<Config> {
std::env::set_var("RATATRIX_CONFIG", PathBuf::from(".config/"));
let c = Config::new();
std::env::remove_var("RATATRIX_CONFIG");