Adding a check for test environment to not clear app cookie on login as this breaks cypress.
This commit is contained in:
parent
52b44736c5
commit
4d04a3baf4
|
@ -55,8 +55,11 @@ async function authInternal(ctx, user, err = null, info = null) {
|
|||
// just store the user ID
|
||||
ctx.cookies.set(Cookies.Auth, user.token, config)
|
||||
// get rid of any app cookies on login
|
||||
// have to check test because this breaks cypress
|
||||
if (!env.isTest()) {
|
||||
clearCookie(ctx, Cookies.CurrentApp)
|
||||
}
|
||||
}
|
||||
|
||||
exports.authenticate = async (ctx, next) => {
|
||||
return passport.authenticate("local", async (err, user, info) => {
|
||||
|
|
Loading…
Reference in New Issue