diff --git a/api-tests/core/admin/ee/review-workflows.test.api.js b/api-tests/core/admin/ee/review-workflows.test.api.js index 0a1ed1798b..34b0ea302e 100644 --- a/api-tests/core/admin/ee/review-workflows.test.api.js +++ b/api-tests/core/admin/ee/review-workflows.test.api.js @@ -177,6 +177,7 @@ describeOnCondition(edition === 'EE')('Review workflows', () => { expect(res.status).toBe(200); expect(res.body.data).toBeInstanceOf(Object); expect(res.body.data).toEqual(testWorkflow); + expect(typeof res.body.meta.workflowCount).toBe('number'); } else { expect(res.status).toBe(404); expect(res.body.data).toBeUndefined(); @@ -486,8 +487,6 @@ describeOnCondition(edition === 'EE')('Review workflows', () => { `/admin/review-workflows/workflows/${testWorkflow.id}?populate=*`, { body: { data: { contentTypes: [productUID] } } } ); - - console.log(workflow); }); test('Should update the accordingly on an entity', async () => {