-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
options.reporterOptions are used for progress reporter #2649
Conversation
2119db7
to
ba7049d
Compare
Progress reporter had multiple options for configuring the reporter, but it needed the optional fields under `options` object, while those fields are provided under `options.reporterOptions`. This commit enables usage of optional fields from `reporterOptions`.
ba7049d
to
e95f05f
Compare
options.reporterOptions
are used for progress reporter
solution for issue #2661 |
ping |
@boneskull i think this should be merged & the issue #2661 closed + this is a pretty old pr :/ |
old PR's happen |
LGTM, thanks |
@canoztokmak Can you please try this again? It seems this introduced breaking changes |
Hey @boneskull, The reporter options are passed as a field inside But in test, the options are passed directly. So the tests are validating the current behaviour, which is wrong. See below: There was no tests when I introduced the fix, that's why build did not failed back then. I think I can fix the tests and send another PR including with this change in a few days. |
@boneskull I've just sent another PR to solve the issue. |
Progress reporter had multiple options for configuring the reporter,
but it needed the optional fields under
options
object, whilethose fields are provided under
options.reporterOptions
.This commit enables usage of optional fields from
reporterOptions
.