UNPKG

funcunit

Version:
19 lines 598 B
/*funcunit@3.6.3#browser/adapters/qunit*/ define('funcunit/browser/adapters/qunit', function (require, exports, module) { module.exports = function (QUnit) { return { pauseTest: function () { QUnit.stop(); }, resumeTest: function () { QUnit.start(); }, assertOK: function (assertion, message) { QUnit.ok(assertion, message); }, equiv: function (expected, actual) { return QUnit.equiv(expected, actual); } }; }; });