From 7e95cdd04cd9d611842aa237a056bf92e75921e2 Mon Sep 17 00:00:00 2001 From: Arodab Date: Fri, 18 Oct 2024 23:34:39 -0300 Subject: [PATCH] tests --- tests/integration/commands/fish.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/commands/fish.test.ts b/tests/integration/commands/fish.test.ts index a611a8a6a6b..33f1ed68421 100644 --- a/tests/integration/commands/fish.test.ts +++ b/tests/integration/commands/fish.test.ts @@ -26,7 +26,7 @@ describe('Fish Command', async () => { it('should handle invalid fish', async () => { const user = await createTestUser(); const res = await user.runCommand(fishCommand, { name: 'asdf' }); - expect(res).toEqual('Thats not a valid fish to catch.'); + expect(res).toEqual('Thats not a valid spot you can fish at.'); }); it('should handle insufficient barb fishing levels', async () => { @@ -71,7 +71,7 @@ describe('Fish Command', async () => { const user = await client.mockUser({ maxed: true }); await user.equip('skilling', [EItem.FISH_SACK_BARREL]); const res = await user.runCommand(fishCommand, { name: 'shrimps' }); - expect(res).toContain('+9 trip minutes and +28 inventory slots for having'); + expect(res).toContain('+9 minutes for Fish barrel'); }); it('should handle using flakes without flakes in bank', async () => { @@ -82,7 +82,7 @@ describe('Fish Command', async () => { it('should fish with flakes', async () => { const user = await createTestUser(); - await user.update({ bank: new Bank({ 'Spirit flakes': 100 }) }); + await user.update({ bank: new Bank({ 'Spirit flakes': 1000 }) }); const res = await user.runCommand(fishCommand, { name: 'shrimps', flakes: true }); expect(res).toContain('50% more fish from using spirit flakes'); });