Closed asapach closed 6 years ago
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project (if not, look below for help). Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).
:memo: Please visit https://cla.developers.google.com/ to sign.
Once you've signed (or fixed any issues), please reply here (e.g. I signed it!
) and we'll verify it.
CLA signed.
CLAs look good, thanks!
//CC @Krinkle
Sorry, messed up my local history. New PR here: #106
As mentioned in #104,
QUnit.begin()
handler runs first forQUnit
and then forkarma-qunit
adapter.QUnit
saves any existing#qunit-fixture
element asQUnit.config.fixture
; if none exist at this point,#qunit-fixture
will never be reset duringQUnit.testStart()
.karma-qunit
runs too late to affect that, but it can create the missing#qunit-fixture
element and save it asQUnit.config.fixture
so thatQUnit
will pick it up.