Files
actions-runner-controller/charts/gha-runner-scale-set-dev/tests/autoscaling_runner_set_test.go
2026-01-09 17:32:54 +01:00

21 lines
346 B
Go

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,
}
})
}