We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 085cf8c commit 3adc817Copy full SHA for 3adc817
test/sanity-check/api/entry-test.js
@@ -467,7 +467,9 @@ describe('Entry API Tests', () => {
467
}
468
})
469
expect(response).to.be.an('object')
470
- trackedExpect(response.uid ?? response.entry_uid, 'Published entry').toBeA('string')
+ // CMA Publish Entry API returns { notice } only, not uid/entry_uid
471
+ trackedExpect(response.notice, 'Published entry notice').toBeA('string')
472
+ expect(response.notice).to.include('performed')
473
474
475
0 commit comments