You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert.strictEqual(returnedErr,'Your app seems to be using App Functions, which your organization is not entitled to. Remove your app function, or upgrade your account to proceed with your app upload.');
132
+
})
133
+
134
+
it('shows creation error when status is 403 and reason is feature flag is not enabled',()=>{
assert.strictEqual(returnedErr,'Your app seems to be using App Functions, which your organization has not enabled in the Preview Center. In the Contentful web app, go to the Account Menu → Preview Center → App Functions to enable and proceed with your app upload.');
138
+
})
139
+
140
+
it('shows creation error when status is 403 and reason is unknown',()=>{
if(reasons.includes('Not entitled to App Functions.')){
45
+
return'Your app seems to be using App Functions, which your organization is not entitled to. Remove your app function, or upgrade your account to proceed with your app upload.'
46
+
}elseif(reasons.includes('App Functions beta not enabled.')){
47
+
return'Your app seems to be using App Functions, which your organization has not enabled in the Preview Center. In the Contentful web app, go to the Account Menu → Preview Center → App Functions to enable and proceed with your app upload.'
0 commit comments