From 0db7b1b163bfd256d24038d74117f18fae4f0a4f Mon Sep 17 00:00:00 2001 From: Ruslans Tarasovs Date: Thu, 30 Apr 2026 10:50:27 +0300 Subject: [PATCH] Removed accidential console.log Signed-off-by: Ruslans Tarasovs --- plugins/techdocs-node/src/stages/generate/helpers.test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/techdocs-node/src/stages/generate/helpers.test.ts b/plugins/techdocs-node/src/stages/generate/helpers.test.ts index f464bdb918..67b534417f 100644 --- a/plugins/techdocs-node/src/stages/generate/helpers.test.ts +++ b/plugins/techdocs-node/src/stages/generate/helpers.test.ts @@ -547,7 +547,6 @@ describe('helpers', () => { it.each(['README.md', 'readme.md', 'docs/README.md', 'docs/readme.md'])( 'should use a symlink to %s if docs/index.md does not exist', async fileName => { - console.log(`Testing with symlink to ${fileName}`); mockDir.setContent({ 'information.md': 'information.md content', [fileName]: ctx => ctx.symlink(mockDir.resolve('information.md')),