mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 04:15:48 +02:00
disable auto-refresh in integration tests
This commit is contained in:
parent
ff3c5d331e
commit
f82f4f6dbc
1 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
# This config is used in our integration tests. If we want to modify this for a specific test, you can do so in the SetupConfig function
|
||||||
|
|
||||||
disableStartupPopups: true
|
disableStartupPopups: true
|
||||||
gui:
|
gui:
|
||||||
theme:
|
theme:
|
||||||
|
@ -8,3 +10,10 @@ gui:
|
||||||
- reverse
|
- reverse
|
||||||
# TODO: we should update most tests to use a file tree now that it's the default
|
# TODO: we should update most tests to use a file tree now that it's the default
|
||||||
showFileTree: false
|
showFileTree: false
|
||||||
|
git:
|
||||||
|
# We don't want to run any periodic background git commands because it'll introduce race conditions and flakiness.
|
||||||
|
# If we need to refresh something from within the test (which should only really happen if we've invoked a
|
||||||
|
# shell command in the background) we should have the user press shift+R to refresh.
|
||||||
|
# TODO: add tests which explicitly test auto-refresh functionality
|
||||||
|
autoRefresh: false
|
||||||
|
autoFetch: false
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue