-
Notifications
You must be signed in to change notification settings - Fork 5
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 Qunit integration #49
Comments
@steveszc Just checking in to see if you've had a chance to consider my suggestion at qunitjs/qunit#1663 (comment). My understanding is that you currently use Lines 26 to 27 in 7bbbb32
Which in turn is fired by Using |
Qunit no longer supports adding a test after the test run has finished. This was apparently never intentionally supported behavior in Qunit but we happened to be relying on it to inject the memory-leak-detection test. A recent Qunit PR removed support for this behavior and memory leak detection no longer runs reliably in Qunit 2.17+, reported in #46 and #47. In newer versions of Qunit this logs a warning, but in Qunit v3 it will hard error.
I've raised this with Qunit team here and they have created an issue to track a new path forward for plugins to run a "final" test. Fortunately they seem to agree that there should be a clear way for plugins to do this.
Once Qunit has introduced a new way forward, we need to update the way we run the final memory leak detection test.
The text was updated successfully, but these errors were encountered: