Compare commits

..

3 commits

Author SHA1 Message Date
7aa0ce2e6a WIP: TUI actor
All checks were successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
2024-08-10 16:50:48 +01:00
7243447efa fix: release-plx generated PR changelog 2024-08-10 16:50:48 +01:00
907db9f122 feat: make forge and repo alias more prominent in email
Some checks failed
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Rust / build (push) Failing after 5s
Closes kemitix/git-next#141
2024-08-10 08:20:49 +01:00
2 changed files with 4 additions and 1 deletions

View file

@ -46,7 +46,7 @@ fn when_history_has_expired_then_message_is_passed() {
#[test]
fn when_history_has_unexpired_then_message_is_blocked() {
let dur = Duration::from_secs(1);
let dur = Duration::from_millis(1);
let mut history = History::new(dur);
let user_notification = UserNotification::RepoConfigLoadFailure {

View file

@ -1,4 +1,7 @@
//
#[cfg(feature = "tui")]
mod tui;
mod alerts;
mod file_watcher;
mod forge;