mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
* WIP(drops): get drops out of _tmp * fix(notifications): no watch for drops/mystery * fix(ops): only two response values * fix(test): update op expectation Also update API docs for modified route. * fix(lint): remove trailing space * fix(test): update integration check
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
import openMysteryItem from '../../../common/script/ops/openMysteryItem';
|
|
import {
|
|
generateUser,
|
|
} from '../../helpers/common.helper';
|
|
import {
|
|
BadRequest,
|
|
} from '../../../common/script/libs/errors';
|
|
import content from '../../../common/script/content/index';
|
|
import i18n from '../../../common/script/i18n';
|
|
|
|
describe('shared.ops.openMysteryItem', () => {
|
|
let user;
|
|
|
|
beforeEach(() => {
|
|
user = generateUser();
|
|
});
|
|
|
|
it('returns error when item key is empty', (done) => {
|
|
try {
|
|
openMysteryItem(user);
|
|
} catch (err) {
|
|
expect(err).to.be.an.instanceof(BadRequest);
|
|
expect(err.message).to.equal(i18n.t('mysteryItemIsEmpty'));
|
|
done();
|
|
}
|
|
});
|
|
|
|
it('opens mystery item', () => {
|
|
let mysteryItemKey = 'eyewear_special_summerRogue';
|
|
|
|
user.purchased.plan.mysteryItems = [mysteryItemKey];
|
|
|
|
let [data, message] = openMysteryItem(user);
|
|
|
|
expect(user.items.gear.owned[mysteryItemKey]).to.be.true;
|
|
expect(message).to.equal(i18n.t('mysteryItemOpened'));
|
|
expect(data).to.eql(content.gear.flat[mysteryItemKey]);
|
|
});
|
|
});
|