<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Hack to expose spec count from QUnit to Karma
 */

var testCount = 0;
var qunitTest = QUnit.test;
QUnit.test = window.test = function () {
    testCount += 1;
    qunitTest.apply(this, arguments);
};
QUnit.begin(function (args) {
    args.totalTests = testCount;
});
</pre></body></html>