1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/test/default_test_config/config.yml
Stefan Haller 605bc026a1 Set promptToReturnFromSubprocess to false for integration tests
There is no way how we could confirm the prompt in an integration test.
2023-04-01 08:16:15 +02:00

20 lines
729 B
YAML

# 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
promptToReturnFromSubprocess: false
gui:
theme:
activeBorderColor:
- green
- bold
SelectedRangeBgcolor:
- reverse
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