diff --git a/cypress/support/utils/settings-utils.ts b/cypress/support/utils/settings-utils.ts index 348f77dadfd..0b091e96ff8 100644 --- a/cypress/support/utils/settings-utils.ts +++ b/cypress/support/utils/settings-utils.ts @@ -1,8 +1,6 @@ /** - * There's a small amount of mgmt settings that are public and will be returned when the user in unauthed. This represents that number. - * - * It doesn't need to be exact but should always be equal or more than the actual amount - * (tests will check that the pre-authed setting count is less than this, and the post-authed count is greater than) - * + * There's a small amount of mgmt settings that are public and will be returned when the user in unauthed. When logged in there will be more. + * + * This number is used to check that after log in we get all settings by checking that unauthed setting count is lower and authed settings count is at or greater than */ -export const PARTIAL_SETTING_THRESHOLD = 12; +export const PARTIAL_SETTING_THRESHOLD = 13;