mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
18 lines
301 B
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)
|
|
}
|