karma-runner / karma-runner/karma

Remove compiled source line numbers

Open
#1,317 1 comment 0 reactions 0 assignees View on GitHub
type: backlog
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

Open the contributing 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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.