Clean code.

This commit is contained in:
Lars Jung 2015-04-23 00:08:43 +02:00
parent c732fbb363
commit 60b366a7f4
2 changed files with 88 additions and 76 deletions

View file

@ -2,89 +2,33 @@
// @include "util/*.js"
(function () {
'use strict';
'use strict';
modulejs.define('config', util.uniqObj());
modulejs._private.instances = {};
modulejs.define('config', util.uniqObj());
modulejs._private.instances = {};
window.assert = chai.assert;
$(function () {
mocha.setup('bdd');
mocha.checkLeaks();
$('html').removeClass();
util.pinHtml();
util.runMocha();
});
function update() {
util.setupMocha();
$('#mocha-overlay .suite').each(function () {
describe('unit tests', function () {
var $suite = $(this);
// @include "tests/unit/premisses.js"
// @include "tests/unit/modulejs.js"
// @include "tests/unit/libs.js"
// @include "tests/unit/config.js"
// @include "tests/unit/boot.js"
// @include "tests/unit/*/*.js"
});
var tests = $suite.find('.test').length;
var passed = $suite.find('.test.pass').length;
var failed = tests - passed;
describe('integration tests', function () {
var $header = $suite.find('> h1 a');
var $count = $('<span class="count"><span class="passed">' + passed + '</span><span class="failed">' + failed + '</span></span>');
// @include "tests/integration/**/*.js"
});
if (!failed) {
$count.find('.failed').remove();
}
$suite.addClass(tests === passed ? 'pass' : 'fail');
$header.find('.count').remove();
$header.append($count);
});
}
var count = 0;
function onTest() {
if (count % 25 === 0) {
update();
}
count += 1;
}
function onEnd() {
$('#mocha-overlay').addClass($('.test.fail').length ? 'fail' : 'pass');
$('#mocha-overlay code').each(function () {
var $code = $(this);
$code.text($code.text().trim().replace(/;\n\s*/g, ';\n'));
});
update();
}
function init() {
$('html').removeClass();
util.pinHtml();
mocha
.run()
.on('test', onTest)
.on('end', onEnd);
}
$(init);
}());
(function () {
'use strict';
describe('unit tests', function () {
// @include "tests/unit/premisses.js"
// @include "tests/unit/modulejs.js"
// @include "tests/unit/libs.js"
// @include "tests/unit/config.js"
// @include "tests/unit/boot.js"
// @include "tests/unit/*/*.js"
});
describe('integration tests', function () {
// @include "tests/integration/**/*.js"
});
}());