Skip to content

Commit

Permalink
added logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Facchetti committed Jul 3, 2023
1 parent 12ebb54 commit f53152d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/e2e/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,13 @@ func adminPortalSessionSetup() (string, *selenium.WebDriver) {
}

if err := wd.AddCookie(cookieGroup); err != nil {
panic(err)
panic("error while adding the cookie:" + err.Error())
}
if err := wd.AddCookie(cookieUser); err != nil {
panic(err)
panic("error while adding the cookie:" + err.Error())
}
if err := wd.AddCookie(cookieAuth); err != nil {
panic(err)
panic("error while adding the cookie:" + err.Error())
}

return host, &wd
Expand Down

0 comments on commit f53152d

Please sign in to comment.