This commit is contained in:
Phillip Thelen
2024-06-10 14:46:32 +02:00
parent d4ba96796c
commit eb3220c96b
5 changed files with 10 additions and 12 deletions

View File

@@ -150,7 +150,6 @@ describe('shops', () => {
expect(rogueItems.length, 'Rogue seasonal gear').to.eql(4); expect(rogueItems.length, 'Rogue seasonal gear').to.eql(4);
}); });
it('seasonal gear contains end date', () => { it('seasonal gear contains end date', () => {
const categories = shared.shops.getMarketGearCategories(user); const categories = shared.shops.getMarketGearCategories(user);
categories.forEach(category => { categories.forEach(category => {

View File

@@ -353,6 +353,5 @@ describe('shared.ops.purchase', () => {
expect(err.message).to.equal(i18n.t('invalidQuantity')); expect(err.message).to.equal(i18n.t('invalidQuantity'));
} }
}); });
}); });
}); });

View File

@@ -31,8 +31,8 @@ const potentialFeaturedPetQuests = [
'owl', 'owl',
'ghost_stag', 'ghost_stag',
'sabretooth' 'sabretooth',
] ];
// hatching potions and food names should be capitalized lest you break the market // hatching potions and food names should be capitalized lest you break the market
const featuredItems = { const featuredItems = {

View File

@@ -591,7 +591,7 @@ shops.getCustomizationsShopCategories = function getCustomizationsShopCategories
identifier: 'backgrounds', identifier: 'backgrounds',
text: i18n.t('backgrounds', language), text: i18n.t('backgrounds', language),
items: [], items: [],
end: matchers.end end: matchers.end,
}; };
eachRight(content.backgrounds, (group, key) => { eachRight(content.backgrounds, (group, key) => {