authelia/suites/suite_short_timeouts_test.go

18 lines
301 B
Go

package suites
import (
"testing"
)
type ShortTimeoutsSuite struct {
*SeleniumSuite
}
func NewShortTimeoutsSuite() *ShortTimeoutsSuite {
return &ShortTimeoutsSuite{SeleniumSuite: new(SeleniumSuite)}
}
func TestShortTimeoutsSuite(t *testing.T) {
RunTypescriptSuite(t, shortTimeoutsSuiteName)
}