From 60117308f745b1530fca69ceb6d2a446c240078e Mon Sep 17 00:00:00 2001 From: Thaum Rystra <9525416+ThaumRystra@users.noreply.github.com> Date: Thu, 15 Feb 2024 22:47:33 +0200 Subject: [PATCH] Removed stray console logs --- app/imports/api/engine/action/ActionEngine.test.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/imports/api/engine/action/ActionEngine.test.ts b/app/imports/api/engine/action/ActionEngine.test.ts index 570c7f9d..84a42c7d 100644 --- a/app/imports/api/engine/action/ActionEngine.test.ts +++ b/app/imports/api/engine/action/ActionEngine.test.ts @@ -175,14 +175,12 @@ describe('Interrupt action system', function () { }); it('Removes parent buffs', async function () { const action = await runActionById(removeParentBuffId); - console.log(allLogContent(action)); assert.deepEqual(allRemovals(action), [ { propId: buffId } ]); }); it('Removes all buffs by tag', async function () { const action = await runActionById(removeTaggedBuffsId); - console.log(allLogContent(action)); assert.deepEqual(allRemovals(action), [ { propId: taggedBuffId }, { propId: secondTaggedBuffId }, @@ -190,7 +188,6 @@ describe('Interrupt action system', function () { }); it('Removes a single buff by tag', async function () { const action = await runActionById(removeOneTaggedBuffId); - console.log(allLogContent(action)); assert.deepEqual(allRemovals(action), [ { propId: taggedBuffId }, ]);