Skip to content
Snippets Groups Projects
Commit b48bbeca authored by Bogdan Cochior's avatar Bogdan Cochior
Browse files

test(mts): fix tests

parent 8ae3c1ba
No related branches found
No related tags found
1 merge request!58Sprint #20 - Goal - Reviewers submit report
...@@ -33,9 +33,36 @@ const defaultFTPConfig = { ...@@ -33,9 +33,36 @@ const defaultFTPConfig = {
exclude: ['*.js'], exclude: ['*.js'],
} }
const journalConfig = {
manuscriptTypes: [
{
label: 'Research Article',
value: 'research',
author: true,
peerReview: true,
abstractRequired: true,
},
{
label: 'Review Article',
value: 'review',
author: true,
peerReview: true,
abstractRequired: true,
},
{
label: 'Letter to the editor',
value: 'letter-to-editor',
author: true,
peerReview: false,
abstractRequired: false,
},
],
}
module.exports = { module.exports = {
defaultConfig, defaultConfig,
defaultParseXmlOptions, defaultParseXmlOptions,
defaultS3Config, defaultS3Config,
defaultFTPConfig, defaultFTPConfig,
journalConfig,
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment