moving to chart tests

This commit is contained in:
Nikola Jokic
2026-01-09 17:32:54 +01:00
parent beef400c07
commit 1ce073b56e
10 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package tests
import (
"testing"
"github.com/gruntwork-io/terratest/modules/helm"
"github.com/gruntwork-io/terratest/modules/logger"
)
func TestAutoscalingRunnerSetLabels(t *testing.T) {
t.Parallel()
t.Run("should set default labels", func(t *testing.T) {
t.Parallel()
options := &helm.Options{
Logger: logger.Discard,
}
})
}