Skip to content

Commit

Permalink
ci: debug failing test values
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Sep 21, 2024
1 parent 638c457 commit b3d1ddf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/dumper/dumper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ export class Dumper {
* on each side of x axis
*/
const whiteSpaceLength = columns - link.length - title.length - 4
console.log({ whiteSpaceLength, new: whiteSpaceLength <= 0 ? 1 : whiteSpaceLength })
const whiteSpace = new Array(whiteSpaceLength <= 0 ? 1 : whiteSpaceLength).join(' ')

/**
Expand Down

0 comments on commit b3d1ddf

Please sign in to comment.