34 lines
651 B
JavaScript
34 lines
651 B
JavaScript
// @include "lib/*.js"
|
|
// @include "util/*.js"
|
|
|
|
(function () {
|
|
'use strict';
|
|
|
|
$(function () {
|
|
|
|
modulejs.define('config', util.uniqObj());
|
|
modulejs._private.instances = {};
|
|
|
|
$('html').removeClass();
|
|
util.pinHtml();
|
|
util.runMocha();
|
|
});
|
|
|
|
util.setupMocha();
|
|
|
|
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"
|
|
});
|
|
|
|
}());
|