You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be useful to add the module and test-name information to callbacks.:
QUnit.log currently only reports the following information actual, expected, message, result, and source. I think it would be useful to add module and testName to this.
QUnit.moduleDone and QUnit.moduleStart don't report any information regarding the actual module that has started or finished. I think it would be useful to pass that information to the callback.
QUnit.testDone and QUnit.testStart don't report any information regarding the actual test that has started or stopped. I think it would be useful to pass that information to the callback.
I apologize if this change has already been made, or if this information can be retrieved some other way.
The text was updated successfully, but these errors were encountered:
Adds module and test name to the information that is returned in the callback provided to QUnit.log(Function). I also modified existing tests, and added new tests that checks for the existence of this information.
I think it would be useful to add the module and test-name information to callbacks.:
QUnit.log
currently only reports the following informationactual
,expected
,message
,result
, andsource
. I think it would be useful to addmodule
andtestName
to this.QUnit.moduleDone
andQUnit.moduleStart
don't report any information regarding the actual module that has started or finished. I think it would be useful to pass that information to the callback.QUnit.testDone
andQUnit.testStart
don't report any information regarding the actual test that has started or stopped. I think it would be useful to pass that information to the callback.I apologize if this change has already been made, or if this information can be retrieved some other way.
The text was updated successfully, but these errors were encountered: