Skip to content

Commit

Permalink
add failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
qvalentin committed Nov 19, 2024
1 parent 9bc4f54 commit 28efb0b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/handler/completion_main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ func TestCompletionMainSingleLines(t *testing.T) {
err error
}{
{"Test completion on {{.Bad.^}}", []string{}, []string{}, errors.New("[Bad ] is no valid template context for helm")},
{"Test completion on {{ .Values.^ingress.hosts }}", []string{"ingress"}, []string{"hosts"}, nil},
{"Test completion on {{ .Bad.^ }}", []string{}, []string{}, errors.New("[Bad ] is no valid template context for helm")},
{"Test completion on {{ n^ }}", []string{"not"}, []string{}, nil},
{"Test completion on {{ .Values.^ }}", []string{"replicaCount"}, []string{}, nil},
Expand Down

0 comments on commit 28efb0b

Please sign in to comment.