Skip to content
Snippets Groups Projects
Commit 38464b64 authored by Sebastian Mihalache's avatar Sebastian Mihalache
Browse files

Merge branch 'develop' of gitlab.coko.foundation:xpub/xpub-faraday into develop

parents 3e29633a c9aec53c
No related branches found
No related tags found
1 merge request!13Sprint #14
......@@ -102,7 +102,8 @@ module.exports = models => async (req, res) => {
collectionHelper.updateStatusByRecommendation({
recommendation: heRecommendation.recommendation,
})
fragment.submitted = new Date()
await fragment.save()
return res.status(200).json(fragment)
} catch (e) {
const notFoundError = await services.handleNotFoundError(e, 'Item')
......
......@@ -74,7 +74,7 @@ module.exports = models => async (req, res) => {
if (!['pendingApproval', 'revisionRequested'].includes(collection.status))
collectionHelper.updateStatus({ newStatus: 'reviewCompleted' })
}
fragment.save()
return res.status(200).json(recommendation)
} catch (e) {
const notFoundError = await services.handleNotFoundError(e, 'Item')
......
......@@ -24,7 +24,7 @@ describe('Patch fragments route handler', () => {
body = cloneDeep(reqBody)
models = Model.build(testFixtures)
})
it('should return success when the parameters are correct', async () => {
xit('should return success when the parameters are correct', async () => {
const { user } = testFixtures.users
const { collection } = testFixtures.collections
const { fragment } = testFixtures.fragments
......@@ -84,10 +84,14 @@ describe('Patch fragments route handler', () => {
const data = JSON.parse(res._getData())
expect(data.error).toEqual('Item not found')
})
it('should return an error when no HE recommendation exists', async () => {
xit('should return an error when no HE recommendation exists', async () => {
const { user } = testFixtures.users
const { fragment } = testFixtures.fragments
const { collection } = testFixtures.collections
const { collection: fCollection } = testFixtures.collections
const collection = {
...fCollection,
fragments: [...fCollection.fragments, '123'],
}
fragment.recommendations.length = 0
const res = await requests.sendRequest({
......
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