-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
730 - Refactor jUnit HTML report #731
Conversation
}, | ||
function(err, result) { | ||
if (err) { console.log(err); } | ||
var kotlinResource = '../test_runner/src/main/resources/inline.html'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't find replacement for this line. @Writhe are you sure that new implementation will update inline.html
in resources
automatically? I guess we don't want to do copy paste manually after update.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, good catch - it won't.
I don't think we need this file anywhere other than resources
, so I can just tell Webpack to target that directory when building the thing. Would that be ok?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can just tell Webpack to target that directory when building the thing. Would that be ok?
Yes, that will work. We don't use inline.html
anywhere else.
f5c3ba5
to
721e9c2
Compare
752881c
to
ee32521
Compare
Codecov Report
@@ Coverage Diff @@
## master #731 +/- ##
=========================================
Coverage 78.21% 78.22%
+ Complexity 675 665 -10
=========================================
Files 125 125
Lines 2796 2774 -22
Branches 405 399 -6
=========================================
- Hits 2187 2170 -17
Misses 350 350
+ Partials 259 254 -5 |
This PR is a refactor of
/junit_html_report
. It replaces CRA with plain TS and simplifies the shape of data expected from Kotlin app (hence the WIP status).TO DO:DONE: