Skip to content

Commit

Permalink
update condition
Browse files Browse the repository at this point in the history
  • Loading branch information
whitfiea committed Dec 11, 2024
1 parent ef66f44 commit 94856f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if and (eq .Values.mas_app_id "manage") (.Values.run_sanity_test) }}
{{- if .Values.mas_appws_spec.components.icd }}
{{- if and (.Values.mas_appws_spec.components) (.Values.mas_appws_spec.components.icd) }}

# A sanity test is one that can be disruptive i.e. it can create new users, call authenticated apis, creates resources
# in the application. This type of test should only be run in a downstream environment such as a dev or staging env
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if eq .Values.mas_app_id "manage" }}
{{- if .Values.mas_appws_spec.components.icd }}
{{- if and (.Values.mas_appws_spec.components) (.Values.mas_appws_spec.components.icd) }}

# A sanity test is one that can be disruptive i.e. it can create new users, call authenticated apis, creates resources
# in the application. This type of test should only be run in a downstream environment such as a dev or staging env
Expand Down

0 comments on commit 94856f0

Please sign in to comment.