From 792d6a42d63d2a12011a4788f272023b0b66b55a Mon Sep 17 00:00:00 2001 From: M365Bass Date: Fri, 17 Nov 2023 09:56:29 +1100 Subject: [PATCH] Removing sortPackage tmp logging --- Tests/e2e/Commands/sortPackage.test.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/Tests/e2e/Commands/sortPackage.test.js b/Tests/e2e/Commands/sortPackage.test.js index 14e6611..cbf0356 100644 --- a/Tests/e2e/Commands/sortPackage.test.js +++ b/Tests/e2e/Commands/sortPackage.test.js @@ -8,10 +8,8 @@ const packageJSON_filePath = join(wpFolderPath, "package.json"); beforeAll(() => { packageJSON_beforeChanges = fs.readFileSync(packageJSON_filePath, "utf8"); - console.log(`packageJSON_beforeChanges: ${packageJSON_beforeChanges}`); sortPackageCommand.sortPackage(packageJSON_filePath); packageJSON_afterChanges = fs.readFileSync(packageJSON_filePath, "utf8"); - console.log(`packageJSON_afterChanges: ${packageJSON_afterChanges}`); }); test("sortPackage: Package.json file changed", () => {