github.com/argoproj/argo-cd/v2@v2.10.9/ui-test/.env (about) 1 # 2 # Currently defined test environment variables. Uncomment and/or change as desired. 3 # 4 ############################ 5 # Test specific variables 6 ############################ 7 # 8 # Timeout to wait for an element to appear. The default is 60 sec. 9 # TEST_TIMEOUT=60000 10 # 11 # Run the tests in headless mode if true, non-headless mode if false 12 IS_HEADLESS=true 13 # 14 # Turn on/off tracing to the console. The default is true. 15 # ENABLE_CONSOLE_LOG=true 16 # 17 ############################ 18 # ArgoCD specific variables 19 ############################ 20 # 21 # URL of the ArgoCD UI to test against 22 ARGOCD_URL=http://localhost:4000 23 # 24 # Git repository where applications reside 25 GIT_REPO=https://github.com/argoproj/argocd-example-apps 26 # 27 # The name to give the app in ArgoCD 28 APP_NAME=myapp 29 # 30 # The project name 31 APP_PROJECT=default 32 # 33 # The source path of the application in the repo 34 SOURCE_REPO_PATH=helm-guestbook 35 # 36 # Destination cluster name 37 DESTINATION_CLUSTER_NAME=in-cluster 38 # 39 # Destination namespace 40 DESTINATION_NAMESPACE=default