1
0
Fork 0
mirror of synced 2024-10-04 03:54:37 +13:00

Fix for tests when headers are undefined

This commit is contained in:
Andrew Kingston 2022-04-06 14:11:05 +01:00
parent 8a9e110929
commit 7546c1a8d5

View file

@ -68,7 +68,7 @@ module.exports = async (ctx, next) => {
const isBuilder =
globalUser && globalUser.builder && globalUser.builder.global
const isDevApp = appId && isDevAppID(appId)
const roleHeader = ctx.request.headers[Headers.PREVIEW_ROLE]
const roleHeader = ctx.request && ctx.request.headers[Headers.PREVIEW_ROLE]
if (isBuilder && isDevApp && roleHeader) {
// Ensure the role is valid by ensuring a definition exists
try {