mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
21 lines
528 B
JavaScript
21 lines
528 B
JavaScript
import {
|
|
generateUser,
|
|
translate as t,
|
|
} from '../../../../helpers/api-integration/v3';
|
|
|
|
describe('GET /user/in-app-rewards', () => {
|
|
let user;
|
|
|
|
before(async () => {
|
|
user = await generateUser();
|
|
});
|
|
|
|
it('returns the reward items available for purchase', async () => {
|
|
const buyList = await user.get('/user/in-app-rewards');
|
|
|
|
expect(_.find(buyList, item => item.text === t('armorWarrior1Text'))).to.exist;
|
|
|
|
expect(_.find(buyList, item => item.text === t('armorWarrior2Text'))).to.not.exist;
|
|
});
|
|
});
|