From 7e7d6c3aa13b55e1eb4b29ba2dd48e8872142fc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Thu, 24 Oct 2024 20:50:36 -0400 Subject: [PATCH] remove debug log of `ls` output on linux --- packages/obsidian-testing-framework/src/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/obsidian-testing-framework/src/index.ts b/packages/obsidian-testing-framework/src/index.ts index 8db2515..b5bb7a4 100644 --- a/packages/obsidian-testing-framework/src/index.ts +++ b/packages/obsidian-testing-framework/src/index.ts @@ -5,7 +5,6 @@ import path from "path"; import { ObsidianTestFixtures } from "./fixtures.js"; import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs"; import { pageUtils, waitForIndexingComplete } from "./util.js"; -import { execSync } from "child_process"; import { randomBytes } from "crypto"; export interface ObsidianTestingConfig { @@ -33,7 +32,7 @@ export function getExe(): string { ]; for (let i = 0; i < possibleDirs.length; i++) { if (existsSync(possibleDirs[i])) { - console.log(execSync(`ls -l ${possibleDirs[i]}`).toString()); + // console.log(execSync(`ls -l ${possibleDirs[i]}`).toString()); return path.join(possibleDirs[i], "resources", "app.asar"); } }