karma-runner / karma-runner/karma
Remove compiled source line numbers
- Dominant language
- JavaScript
- Stars
- 12k
- Forks
- 1.7k
- PR merge metrics
- No merged PRs in 30d
Description
The compiled line numbers are still displayed:
```
return util.format('%s:%d:%d <- %s:%d:%d', path, line, column, original.source,
original.line, original.column);
```
But this really clutters up the terminal, it really should be:
```
return util.format('%s:%d:%d', original.source, original.line, original.column);
```
Contributor guide
Research direction
Search the repository for the shown util.format string and inspect the code that formats compiled source locations. Verify the terminal output keeps the original source, line, and column while omitting the compiled location, then run the relevant existing tests or test command to confirm the output.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- cli, testing
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 48/100