-
Notifications
You must be signed in to change notification settings - Fork 781
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
QUnit.done should provide aggregated results #472
Comments
How granular/verbose are you thinking we should make it? |
See #405 (comment). |
@JamesMGreene @leobalter same here, pre-2.0. |
I would again ask:
For example, unlike #351, I would expect that we would not include the assertions on the Happy to implement if we can get the data details hammered out. |
Basic structure could look like this: QUnit.on( "runEnd", function( details ) {
details.tests.forEach(function( test ) {
// Access test.name, test.moduleName, test.assertions
// assertions is the same as in testDone
});
}); |
Here's a usage example that could be simplified by implementing this ticket: https://github.com/axemclion/grunt-saucelabs#test-result-details-with-qunit |
@jzaefferer I'll try to address this issue on #882 |
similarly to #351, I believe this is a wontfix for now. |
Similar to #351
Any test runner that doesn't need live updating shouldn't have to aggregate results manually.
The text was updated successfully, but these errors were encountered: