Skip to content

Commit

Permalink
fix: add additional logger to make sure we understand the process better
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillzyusko committed Oct 25, 2024
1 parent 655626d commit d254f8f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/e2e/compare/output/markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ const writeToFile = (filePath: string, content: string) =>

const writeToMarkdown = (filePath: string, data: Data, skippedTests: string[]) => {
const markdown = buildMarkdown(data, skippedTests);
Logger.info('Markdown was built successfully, writing to file...', markdown);
return writeToFile(filePath, markdown).catch((error) => {
console.error(error);
throw error;
Expand Down

0 comments on commit d254f8f

Please sign in to comment.