lunarmodules / busted

Elegant Lua unit testing.
https://lunarmodules.github.io/busted/
MIT License
1.4k stars 185 forks source link

opt: truncated package name in junit report #742

Open myzhan opened 2 months ago

myzhan commented 2 months ago

The junit output handler extracts package name from trace.short_src, which size is limited to 60 in the source of lua.

When my test file located in a deep path, the junit report will be truncated.

image

In this PR, I use trace.source instead of trace.short_src.