From 561ec09cb99f76789d7f1a8fe79ccc1dad7c57e7 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 10 Apr 2025 23:08:35 +0200 Subject: [PATCH] fix: output filename mismatch --- tests/e2e/compare/output/markdown.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/compare/output/markdown.ts b/tests/e2e/compare/output/markdown.ts index 9e5e139197ac..2892300b0516 100644 --- a/tests/e2e/compare/output/markdown.ts +++ b/tests/e2e/compare/output/markdown.ts @@ -184,7 +184,7 @@ const writeToMarkdown = (outputDir: string, data: Data, skippedTests: string[]) return Promise.all( markdownFiles.map((file, index) => { - const filePath = `${outputDir}/output-${index + 1}.md`; + const filePath = `${outputDir}/output${index + 1}.md`; return writeToFile(filePath, file).catch((error) => { console.error(error); throw error;