Skip to content

Commit

Permalink
Remove console.log statement in Linux Command Test
Browse files Browse the repository at this point in the history
Removed unnecessary console.log statement in Linux Command Test to
improve code readability and maintainability.

Generated by gpt-3.5-turbo
  • Loading branch information
joone committed Feb 26, 2024
1 parent d00372d commit 5f12b79
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/command.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ describe("Linux Command Test", () => {
let stdout = execSync(
`MOCHA_ENV=test node ${LOZ_BIN} "Find sfsdfef text in files in the current directory"`
).toString();
console.log(stdout);
expect(stdout).to.match(/No output/);
});
});

0 comments on commit 5f12b79

Please sign in to comment.