mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 07:37:25 +01:00
Moved markPMSRead to common.ops. Added tests
This commit is contained in:
22
test/api/v3/integration/user/POST-user_mark_pms_read.test.js
Normal file
22
test/api/v3/integration/user/POST-user_mark_pms_read.test.js
Normal file
@@ -0,0 +1,22 @@
|
||||
import {
|
||||
generateUser,
|
||||
} from '../../../../helpers/api-integration/v3';
|
||||
|
||||
describe('POST /user/mark-pms-read', () => {
|
||||
let user;
|
||||
|
||||
beforeEach(async () => {
|
||||
user = await generateUser();
|
||||
});
|
||||
|
||||
// More tests in common code unit tests
|
||||
|
||||
it('marks user\'s private messages as read', async () => {
|
||||
await user.update({
|
||||
'inbox.newMessages': 1,
|
||||
});
|
||||
let res = await user.post('/user/mark-pms-read');
|
||||
await user.sync();
|
||||
expect(user.inbox.newMessages).to.equal(0);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user