mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9 lines
179 B
Go
9 lines
179 B
Go
package suites
|
|
|
|
import "context"
|
|
|
|
func doLogout(ctx context.Context, s *SeleniumSuite) {
|
|
doVisit(s, "https://login.example.com:8080/#/logout")
|
|
verifyIsFirstFactorPage(ctx, s)
|
|
}
|