ece136c92e
* add GitHub GraphQL api initial support * support mutiple backends for e2e tests - initial commit * add github backend e2e test (currently skipped), fix bugs per tests * refactor e2e tests, add fork workflow tests, support fork workflow in GraphQL api * remove log message that might contain authentication token * return empty error when commit is not found when using GraphQL (align with base class) * disable github backend tests * fix bugs introduced after rebase of GraphQL and OpenAuthoring features * test: update tests per openAuthoring changes, split tests into multiple files * fix: pass in headers for pagination requests, avoid async iterator as it requires a polyfill on old browsers * test(e2e): disable github backend tests
28 lines
828 B
JavaScript
28 lines
828 B
JavaScript
const workflowStatus = { draft: 'Drafts', review: 'In Review', ready: 'Ready' };
|
|
const editorStatus = { draft: 'Draft', review: 'In review', ready: 'Ready' };
|
|
const setting1 = { limit: 10, author: 'John Doe' };
|
|
const setting2 = { name: 'Andrew Wommack', description: 'A Gospel Teacher' };
|
|
const notifications = {
|
|
saved: 'Entry saved',
|
|
published: 'Entry published',
|
|
updated: 'Entry status updated',
|
|
deletedUnpublished: 'Unpublished changes deleted',
|
|
error: {
|
|
missingField: "Oops, you've missed a required field. Please complete before saving.",
|
|
},
|
|
validation: {
|
|
range: {
|
|
fieldLabel: 'Number of posts on frontpage',
|
|
message: 'Number of posts on frontpage must be between 1 and 10.',
|
|
},
|
|
},
|
|
};
|
|
|
|
module.exports = {
|
|
workflowStatus,
|
|
editorStatus,
|
|
setting1,
|
|
setting2,
|
|
notifications,
|
|
};
|