mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
* fix: correct translation strings for pet/mount names * chore: expose potion and egg key, not object in pet content api * fix: Update feed route to use potion and egg objects * refactor: Update feed route to use petInfo * Use pet/mount text method for name * correct feed route
41 lines
952 B
JavaScript
41 lines
952 B
JavaScript
/* eslint-disable camelcase */
|
|
|
|
import {
|
|
generateUser,
|
|
translate as t,
|
|
} from '../../../../helpers/api-integration/v3';
|
|
import content from '../../../../../common/script/content';
|
|
|
|
describe('POST /user/feed/:pet/:food', () => {
|
|
let user;
|
|
|
|
beforeEach(async () => {
|
|
user = await generateUser();
|
|
});
|
|
|
|
// More tests in common code unit tests
|
|
|
|
it('does not enjoy the food', async () => {
|
|
await user.update({
|
|
'items.pets.Wolf-Base': 5,
|
|
'items.food.Milk': 2,
|
|
});
|
|
|
|
let food = content.food.Milk;
|
|
let pet = content.petInfo['Wolf-Base'];
|
|
|
|
let res = await user.post('/user/feed/Wolf-Base/Milk');
|
|
await user.sync();
|
|
expect(res).to.eql({
|
|
data: user.items.pets['Wolf-Base'],
|
|
message: t('messageDontEnjoyFood', {
|
|
egg: pet.text(),
|
|
foodText: food.text(),
|
|
}),
|
|
});
|
|
|
|
expect(user.items.food.Milk).to.equal(1);
|
|
expect(user.items.pets['Wolf-Base']).to.equal(7);
|
|
});
|
|
});
|