You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
274 B

  1. /**
  2. * Hack to expose spec count from QUnit to Karma
  3. */
  4. var testCount = 0;
  5. var qunitTest = QUnit.test;
  6. QUnit.test = window.test = function () {
  7. testCount += 1;
  8. qunitTest.apply(this, arguments);
  9. };
  10. QUnit.begin(function (args) {
  11. args.totalTests = testCount;
  12. });