mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 07:07:35 +01:00
Removed update stats notification (#10324)
This commit is contained in:
@@ -8,7 +8,7 @@ describe('common.fns.updateStats', () => {
|
||||
|
||||
beforeEach(() => {
|
||||
user = generateUser();
|
||||
user.addNotification = sinon.spy();
|
||||
// user.addNotification = sinon.spy();
|
||||
});
|
||||
|
||||
context('No Hp', () => {
|
||||
@@ -110,14 +110,14 @@ describe('common.fns.updateStats', () => {
|
||||
expect(user.stats.points).to.eql(10);
|
||||
});
|
||||
|
||||
it('add user notification when drops are enabled', () => {
|
||||
xit('add user notification when drops are enabled', () => {
|
||||
user.stats.lvl = 3;
|
||||
updateStats(user, { });
|
||||
expect(user.addNotification).to.be.calledOnce;
|
||||
expect(user.addNotification).to.be.calledWith('DROPS_ENABLED');
|
||||
});
|
||||
|
||||
it('add user notification when the user levels up', () => {
|
||||
xit('add user notification when the user levels up', () => {
|
||||
const initialLvl = user.stats.lvl;
|
||||
updateStats(user, {
|
||||
exp: 3000,
|
||||
@@ -129,7 +129,7 @@ describe('common.fns.updateStats', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('add user notification when rebirth is enabled', () => {
|
||||
xit('add user notification when rebirth is enabled', () => {
|
||||
user.stats.lvl = 51;
|
||||
updateStats(user, { });
|
||||
expect(user.addNotification).to.be.calledTwice; // once is for drops enabled
|
||||
|
||||
@@ -20,7 +20,7 @@ module.exports = function updateStats (user, stats, req = {}, analytics) {
|
||||
if (stats.exp >= experienceToNextLevel) {
|
||||
user.stats.exp = stats.exp;
|
||||
|
||||
const initialLvl = user.stats.lvl;
|
||||
// const initialLvl = user.stats.lvl;
|
||||
|
||||
while (stats.exp >= experienceToNextLevel) {
|
||||
stats.exp -= experienceToNextLevel;
|
||||
@@ -50,12 +50,13 @@ module.exports = function updateStats (user, stats, req = {}, analytics) {
|
||||
}
|
||||
}
|
||||
|
||||
const newLvl = user.stats.lvl;
|
||||
|
||||
if (user.addNotification) user.addNotification('LEVELED_UP', {
|
||||
initialLvl,
|
||||
newLvl,
|
||||
});
|
||||
// @TODO: Tmp disable to see if this is causing concurrency
|
||||
// const newLvl = user.stats.lvl;
|
||||
//
|
||||
// if (user.addNotification) user.addNotification('LEVELED_UP', {
|
||||
// initialLvl,
|
||||
// newLvl,
|
||||
// });
|
||||
}
|
||||
|
||||
user.stats.exp = stats.exp;
|
||||
|
||||
Reference in New Issue
Block a user