diff --git a/bot/commands/deckadvice/spec.js b/bot/commands/deckadvice/spec.js index 8428211cb..e59a93931 100644 --- a/bot/commands/deckadvice/spec.js +++ b/bot/commands/deckadvice/spec.js @@ -10,7 +10,7 @@ describe('Bot — /deckadvice', () => { expect(output.ephemeral).toBeTruthy() expect(embed.title).toBe('💎 Deck Advice') expect(embed.description).toBe( - 'There was an error evaluating the given deck ID.' + 'There was an error evaluating the given deck ID.', ) }) @@ -22,13 +22,13 @@ describe('Bot — /deckadvice', () => { expect(output.ephemeral).toBeTruthy() expect(embed.title).toBe('💎 Deck Advice') expect(embed.description).toBe( - 'There was an error evaluating some of the cards.' + 'There was an error evaluating some of the cards.', ) }) it('should return advice for a given deck', async () => { const interaction = mockInteraction({ - deck: '5n35n125n163w54n184w95w125w133n394w153w194w21', + deck: '5n35n124w95n163w54n185w124w155w133n393w191w23', }) const output = await command.execute(interaction, client) const embed = output.embeds[0].data @@ -36,7 +36,7 @@ describe('Bot — /deckadvice', () => { expect(output.ephemeral).toBeTruthy() expect(embed.title).toBe('💎 Deck Advice') expect(embed.url).toContain( - 'https://stormbound-kitty.com/deck/5n35n125n163w54n184w95w125w133n394w153w194w21/detail' + 'https://stormbound-kitty.com/deck/5n35n125n163w54n184w95w125w133n394w153w194w21/detail', ) expect(embed.fields.length).toBeGreaterThan(0) })