Skip to content
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

Fix % always 0 in HTML reporter #2299

Merged
merged 2 commits into from Jun 26, 2016
Merged

Fix % always 0 in HTML reporter #2299

merged 2 commits into from Jun 26, 2016

Conversation

AviVahl
Copy link
Contributor

@AviVahl AviVahl commented Jun 8, 2016

Hi mocha team.
This is a small fix for the progress bar staying consistently at 0 when using the HTML reporter.
Seems like a regression that happened due to the "double-error" fix/refactor.

Reasoning for the changes:
updateStats() accesses this.total, but this === the global object (window) if not specified explicitly here.
Also added a missing update when all tests end.

updateStats() accesses this.total, but this === the global object (window) if not specified explicitly.
Also added a missing update when all tests end.
@@ -125,6 +125,7 @@ function HTML(runner) {

runner.on('suite end', function(suite) {
if (suite.root) {
updateStats.call(this);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we just use Function.prototype.bind() on updateStats instead?

@AviVahl
Copy link
Contributor Author

AviVahl commented Jun 10, 2016

@boneskull Thanks for reviewing.

You could bind updateStats to runner and set it as this.updateStats.
Both approaches would work. You would still need to add a call on 'suite end'.
I wasn't sure if you want updateStats set on the reporter instance here, so I used the a explicit call. Please clarify.

@boneskull
Copy link
Member

@AviVahl It looks like updateStats() is always called with the context of the Runner object, so actually call and bind shouldn't be necessary, yes?

@AviVahl
Copy link
Contributor Author

AviVahl commented Jun 11, 2016

Calling updateStats() in a block inside a context does not set that context to the call invocation.
I might have an alternative patch which you would like more.
I'll commit.

@AviVahl
Copy link
Contributor Author

AviVahl commented Jun 11, 2016

@boneskull new patch allows calling updateStats() directly (without specifying this), as it binds runner to extract the value of total.
Please let me know if this is a nicer solution in your opinion.

@AviVahl
Copy link
Contributor Author

AviVahl commented Jun 24, 2016

@boneskull Can we get this small bug-fix reviewed again?
Two lines change for such an annoying UI issue.
Thanks in advance.

@boneskull
Copy link
Member

@AviVahl looks good, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: browser browser-specific
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants