23 lines
392 B
Go
23 lines
392 B
Go
|
package suites
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/suite"
|
||
|
)
|
||
|
|
||
|
type StandaloneSuite struct {
|
||
|
*SeleniumSuite
|
||
|
}
|
||
|
|
||
|
func NewStandaloneSuite() *StandaloneSuite {
|
||
|
return &StandaloneSuite{SeleniumSuite: new(SeleniumSuite)}
|
||
|
}
|
||
|
|
||
|
func TestStandaloneSuite(t *testing.T) {
|
||
|
suite.Run(t, NewOneFactorSuite())
|
||
|
suite.Run(t, NewTwoFactorSuite())
|
||
|
|
||
|
RunTypescriptSuite(t, standaloneSuiteName)
|
||
|
}
|