Skip to content

Commit a0fb9ee

Browse files
committed
Removed stray console.log
1 parent 69e44d3 commit a0fb9ee

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/integration/tsgen.integration.test.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ describe("Integration Test for tsgen command", () => {
2424
const result = spawnSync(cmd, args, { encoding: "utf-8" });
2525

2626
expect(result.status).toBe(0); // Command should exit successfully
27-
console.log("FullOutputPath", outputFilePath);
28-
console.log("Directory", __dirname);
29-
console.log("Directory", process.cwd());
3027
expect(fs.existsSync(outputFilePath)).toBeTruthy();
3128

3229
const generatedContent = fs.readFileSync(outputFilePath, "utf8");
@@ -48,9 +45,6 @@ describe("Integration Test for tsgen command", () => {
4845
prefix,
4946
];
5047

51-
console.log("FullOutputPath", outputFilePath);
52-
console.log("Directory", __dirname);
53-
console.log("Directory", process.cwd());
5448
const result = spawnSync(cmd, args, { encoding: "utf-8" });
5549

5650
expect(result.status).toBe(0);

0 commit comments

Comments
 (0)