diff --git a/test/common/libs/shops.test.js b/test/common/libs/shops.test.js index a58c0678bd..576d31c32d 100644 --- a/test/common/libs/shops.test.js +++ b/test/common/libs/shops.test.js @@ -150,7 +150,6 @@ describe('shops', () => { expect(rogueItems.length, 'Rogue seasonal gear').to.eql(4); }); - it('seasonal gear contains end date', () => { const categories = shared.shops.getMarketGearCategories(user); categories.forEach(category => { diff --git a/test/common/ops/buy/purchase.test.js b/test/common/ops/buy/purchase.test.js index 8bf4398c2a..a61b3a0d59 100644 --- a/test/common/ops/buy/purchase.test.js +++ b/test/common/ops/buy/purchase.test.js @@ -353,6 +353,5 @@ describe('shared.ops.purchase', () => { expect(err.message).to.equal(i18n.t('invalidQuantity')); } }); - }); }); diff --git a/test/common/ops/unlock.test.js b/test/common/ops/unlock.test.js index b48c48f8a1..24aed655a5 100644 --- a/test/common/ops/unlock.test.js +++ b/test/common/ops/unlock.test.js @@ -36,7 +36,7 @@ describe('shared.ops.unlock', () => { } }); - it('does not unlock lost gear', async () => { + it('does not unlock lost gear', async () => { user.items.gear.owned.headAccessory_special_bearEars = false; await unlock(user, { diff --git a/website/common/script/content/shop-featuredItems.js b/website/common/script/content/shop-featuredItems.js index 5ac59e6115..9712a5b40f 100644 --- a/website/common/script/content/shop-featuredItems.js +++ b/website/common/script/content/shop-featuredItems.js @@ -9,7 +9,7 @@ const potentialFeaturedPetQuests = [ 'slime', 'cat', - + 'frog', 'monkey', @@ -18,7 +18,7 @@ const potentialFeaturedPetQuests = [ 'hippo', 'giraffe', - + 'guineapig', 'cheetah', @@ -31,8 +31,8 @@ const potentialFeaturedPetQuests = [ 'owl', 'ghost_stag', - 'sabretooth' -] + 'sabretooth', +]; // hatching potions and food names should be capitalized lest you break the market const featuredItems = { @@ -65,10 +65,10 @@ const featuredItems = { }); const hatchingPotionQuests = getScheduleMatchingGroup('hatchingPotionQuests').items; hatchingPotionQuests.forEach(itemKey => { - featured.push({ - type: 'quests', - path: `quests.${itemKey}`, - }); + featured.push({ + type: 'quests', + path: `quests.${itemKey}`, + }); }); return featured; }, diff --git a/website/common/script/libs/shops.js b/website/common/script/libs/shops.js index 183ae23ba9..a712fe1eec 100644 --- a/website/common/script/libs/shops.js +++ b/website/common/script/libs/shops.js @@ -591,7 +591,7 @@ shops.getCustomizationsShopCategories = function getCustomizationsShopCategories identifier: 'backgrounds', text: i18n.t('backgrounds', language), items: [], - end: matchers.end + end: matchers.end, }; eachRight(content.backgrounds, (group, key) => {