From af39fd480f62936dd22b36e7b14822b868edf2ef Mon Sep 17 00:00:00 2001 From: Paul Stanton Date: Mon, 16 Jun 2025 12:51:12 +0100 Subject: [PATCH] Remove debugger comment from DropZoneComponentTest --- tests/js/web/DropZone/DropZoneComponentTest.js | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/js/web/DropZone/DropZoneComponentTest.js b/tests/js/web/DropZone/DropZoneComponentTest.js index 779799c0f..93e14fbcb 100644 --- a/tests/js/web/DropZone/DropZoneComponentTest.js +++ b/tests/js/web/DropZone/DropZoneComponentTest.js @@ -182,7 +182,6 @@ describe('DropZoneComponent', () => { instanceManager.getFiles.returns(rawFiles); dropZoneComponent.processInputNode($fileInput[0], 0, options.showInputNode); $fileInput[0].dispatchEvent(change); - //debugger; const dataTransferFile = getDTFileList($fileInput[0])[0]; const inputFile = $fileInput[0].files[0]; expect(inputFile.name).to.equal(dataTransferFile.name);