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