summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2022-06-07 14:28:39 +0200
committerGitHub <noreply@github.com>2022-06-07 14:28:39 +0200
commit3be718371af9029822e2aeb3f52b5dde1b7397d1 (patch)
tree017147ebe5418a67570b9e7ea3d9ba3bf990cd83 /src
parent3e5312087b762a7dc4988162f8691e8c79a9bdc2 (diff)
feat(ui): add status bar tips (#1462)
* feat(ui): add more tips to status bar * fix(e2e): clear status-bar-tips cache for each test * style(fmt): rustfmt
Diffstat (limited to 'src')
-rw-r--r--src/tests/e2e/remote_runner.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tests/e2e/remote_runner.rs b/src/tests/e2e/remote_runner.rs
index 564714bb7..ad15de228 100644
--- a/src/tests/e2e/remote_runner.rs
+++ b/src/tests/e2e/remote_runner.rs
@@ -57,6 +57,10 @@ fn setup_remote_environment(channel: &mut ssh2::Channel, win_size: Size) {
}
fn stop_zellij(channel: &mut ssh2::Channel) {
+ // here we remove the status-bar-tips cache to make sure only the quicknav tip is loaded
+ channel
+ .write_all(b"find /tmp | grep status-bar-tips | xargs rm\n")
+ .unwrap();
channel.write_all(b"killall -KILL zellij\n").unwrap();
}