-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Steps to reproduce
- Run jayvee with the
peekdebug granularity - Use
TextFileInterpreterto parse a file with newlines not matched by the regex/\r?\n/
Description
- Expected: The logging output cuts off after 10 lines
- Actual: The lines aren't detected properly due to the false lineBreak regex.
jayvee/libs/execution/src/lib/debugging/debug-log-visitor.ts
Lines 130 to 135 in 3e1898b
| // BUG: /\r?\n/ might not be the correct line break | |
| const result = findLineBounds( | |
| [this.PEEK_NUMBER_OF_LINES - 1], | |
| /\r?\n/, | |
| textFile.content, | |
| ); |
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working