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