12345678910111213141516171819202122232425262728 |
- (function () {
- 'use strict';
- // Boilerplate QUnit acceptance test
- QUnit.acceptance = function(name, conf) {
- var title = document.title;
- var wrappedBeforeEach = conf.beforeEach;
- conf.beforeEach = function() {
- m.deps(window.mock());
- wrappedBeforeEach();
- };
- var wrappedAfterEach = conf.afterEach;
- conf.afterEach = function(assert) {
- var cleaned = assert.async();
- wrappedAfterEach();
- document.title = title;
- $.mockjax.clear();
- window.onCleanUp(function() {
- cleaned();
- });
- };
- QUnit.module('Acceptance: ' + name, conf);
- };
- }());
|