mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 13:17:24 +01:00
48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
import moment from 'moment';
|
|
import {
|
|
generateUser,
|
|
translate as t,
|
|
} from '../../../../helpers/api-integration/v3';
|
|
|
|
let user;
|
|
const endpoint = '/user/custom-day-start';
|
|
|
|
describe('POST /user/custom-day-start', () => {
|
|
beforeEach(async () => {
|
|
user = await generateUser();
|
|
});
|
|
|
|
it('updates user.preferences.dayStart', async () => {
|
|
expect(user.preferences.dayStart).to.eql(0);
|
|
|
|
await user.post(endpoint, { dayStart: 1 });
|
|
await user.sync();
|
|
|
|
expect(user.preferences.dayStart).to.eql(1);
|
|
});
|
|
|
|
it('sets lastCron to the current time to prevent an unexpected cron', async () => {
|
|
const oldCron = moment().subtract(7, 'hours');
|
|
|
|
await user.update({ lastCron: oldCron });
|
|
await user.post(endpoint, { dayStart: 1 });
|
|
await user.sync();
|
|
|
|
expect(user.lastCron.valueOf()).to.be.gt(oldCron.valueOf());
|
|
});
|
|
|
|
it('returns a confirmation message', async () => {
|
|
const { message } = await user.post(endpoint, { dayStart: 1 });
|
|
|
|
expect(message).to.eql(t('customDayStartHasChanged'));
|
|
});
|
|
|
|
it('errors if invalid value is passed', async () => {
|
|
await expect(user.post(endpoint, { dayStart: 'foo' }))
|
|
.to.eventually.be.rejected;
|
|
|
|
await expect(user.post(endpoint, { dayStart: 24 }))
|
|
.to.eventually.be.rejected;
|
|
});
|
|
});
|