Making the worker tell the UI it is in production when running in Cypress.

This commit is contained in:
mike12345567 2022-01-19 11:53:44 +00:00
parent ec95d20b21
commit a46de08d18
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ exports.fetch = async ctx => {
cloud: !env.SELF_HOSTED,
accountPortalUrl: env.ACCOUNT_PORTAL_URL,
disableAccountPortal: env.DISABLE_ACCOUNT_PORTAL,
isDev: env.isDev(),
// in test need to pretend its in production for the UI (Cypress)
isDev: env.isDev() && !env.isTest(),
}
}