hull/examples/tests/example/example_test.go

16 lines
267 B
Go

package example
import (
"testing"
"github.com/rancher/hull/pkg/test"
)
func TestChart(t *testing.T) {
opts := test.GetRancherOptions()
// opts.Coverage.IncludeSubcharts = true
opts.Coverage.Disabled = true
opts.YAMLLint.Enabled = true
suite.Run(t, opts)
}