summaryrefslogtreecommitdiffstats
path: root/test/default_test_config/config.yml
blob: 04f7422cb89dfc853f7d8abdba3f660db8c7e4aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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
    inactiveBorderColor:
    - black
    SelectedRangeBgcolor:
    - reverse
  # Not important in tests but it creates clutter in demos
  showRandomTip: 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