UNPKG

toastr

Version:

ToastrJS is a JavaScript library for Gnome / Growl type non-blocking notifications. jQuery is required. The goal is to create a simple core library that can be customized and extended.

14 lines (12 loc) 274 B
/** * 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; });