mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
18 lines
277 B
Go
18 lines
277 B
Go
|
package suites
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
type BypassAllSuite struct {
|
||
|
*SeleniumSuite
|
||
|
}
|
||
|
|
||
|
func NewBypassAllSuite() *BypassAllSuite {
|
||
|
return &BypassAllSuite{SeleniumSuite: new(SeleniumSuite)}
|
||
|
}
|
||
|
|
||
|
func TestBypassAllSuite(t *testing.T) {
|
||
|
RunTypescriptSuite(t, bypassAllSuiteName)
|
||
|
}
|