summaryrefslogtreecommitdiff
path: root/internal/suites/suite_traefik3_test.go
blob: f83b9f553953c9256381818c72dad6a5748f28f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package suites

import (
	"testing"

	"github.com/stretchr/testify/suite"
)

func TestTraefik3Suite(t *testing.T) {
	if testing.Short() {
		t.Skip("skipping suite test in short mode")
	}

	suite.Run(t, NewTraefikSuite(traefik3SuiteName))
}