108 lines
4.4 KiB
JavaScript
108 lines
4.4 KiB
JavaScript
// Karma config for xmodule suite.
|
|
// Docs in common/static/common/js/karma.common.conf.js
|
|
|
|
/* jshint node: true */
|
|
/*jshint -W079 */
|
|
|
|
'use strict';
|
|
var path = require('path');
|
|
var _ = require('underscore');
|
|
var configModule = require(path.join(__dirname, 'common_static/common/js/karma.common.conf.js'));
|
|
|
|
var libraryFiles = [
|
|
// override fixture path and other config.
|
|
{pattern: path.join(configModule.appRoot, 'common/static/common/js/jasmine.common.conf.js'), included: true},
|
|
|
|
{pattern: 'common_static/js/vendor/jquery.min.js', included: true},
|
|
{pattern: 'common_static/js/test/i18n.js', included: true},
|
|
{pattern: 'common_static/coffee/src/ajax_prefix.js', included: true},
|
|
{pattern: 'common_static/js/src/logger.js', included: true},
|
|
{pattern: 'common_static/js/vendor/jasmine-imagediff.js', included: true},
|
|
{pattern: 'common_static/js/libs/jasmine-waituntil.js', included: true},
|
|
{pattern: 'common_static/js/libs/jasmine-extensions.js', included: true},
|
|
{pattern: 'common_static/js/vendor/requirejs/require.js', included: true},
|
|
{pattern: 'RequireJS-namespace-undefine.js', included: true},
|
|
{pattern: 'common_static/js/vendor/jquery-ui.min.js', included: true},
|
|
{pattern: 'common_static/js/vendor/jquery.ui.draggable.js', included: true},
|
|
{pattern: 'common_static/js/vendor/jquery.cookie.js', included: true},
|
|
{pattern: 'common_static/js/vendor/json2.js', included: true},
|
|
{pattern: 'common_static/common/js/vendor/underscore.js', included: true},
|
|
{pattern: 'common_static/common/js/vendor/backbone.js', included: true},
|
|
{pattern: 'common_static/js/vendor/jquery.leanModal.js', included: true},
|
|
{pattern: 'common_static/js/vendor/CodeMirror/codemirror.js', included: true},
|
|
{pattern: 'common_static/js/vendor/tinymce/js/tinymce/jquery.tinymce.min.js', included: true},
|
|
{pattern: 'common_static/js/vendor/tinymce/js/tinymce/tinymce.full.min.js', included: true},
|
|
{pattern: 'common_static/js/vendor/jquery.timeago.js', included: true},
|
|
{pattern: 'common_static/js/vendor/sinon-1.17.0.js', included: true},
|
|
{pattern: 'common_static/js/test/add_ajax_prefix.js', included: true},
|
|
{pattern: 'common_static/js/src/utility.js', included: true},
|
|
{pattern: 'public/js/split_test_staff.js', included: true},
|
|
{pattern: 'common_static/js/src/accessibility_tools.js', included: true},
|
|
{pattern: 'common_static/js/vendor/moment.min.js', included: true},
|
|
{pattern: 'spec/main_requirejs.js', included: true},
|
|
{pattern: 'src/word_cloud/d3.min.js', included: true},
|
|
{pattern: 'common_static/js/vendor/draggabilly.js', included: false},
|
|
{pattern: 'common_static/edx-ui-toolkit/js/utils/global-loader.js', included: true},
|
|
{pattern: 'common_static/edx-pattern-library/js/modernizr-custom.js', included: false},
|
|
{pattern: 'common_static/edx-pattern-library/js/afontgarde.js', included: false},
|
|
{pattern: 'common_static/edx-pattern-library/js/edx-icons.js', included: false}
|
|
];
|
|
|
|
// Paths to source JavaScript files
|
|
var sourceFiles = [
|
|
{pattern: 'src/xmodule.js', included: true, skipInstrument: true},
|
|
{pattern: 'src/**/*.js', included: true}
|
|
];
|
|
|
|
// Paths to spec (test) JavaScript files
|
|
var specFiles = [
|
|
{pattern: 'spec/helper.js', included: true, skipInstrument: true},
|
|
{pattern: 'spec/**/*.js', included: true}
|
|
];
|
|
|
|
// Paths to fixture files
|
|
var fixtureFiles = [
|
|
{pattern: 'fixtures/*.*', included: false, served: true}
|
|
];
|
|
|
|
var runAndConfigFiles = [
|
|
{pattern: 'karma_runner.js', included: true}
|
|
];
|
|
|
|
// do not include tests or libraries
|
|
// (these files will be instrumented by Istanbul)
|
|
var preprocessors = (function () {
|
|
var preprocessFiles = {};
|
|
_.flatten([sourceFiles, specFiles]).forEach(function (file) {
|
|
var pattern = _.isObject(file) ? file.pattern : file;
|
|
|
|
if (!file.skipInstrument) {
|
|
preprocessFiles[pattern] = ['coverage'];
|
|
}
|
|
});
|
|
|
|
return preprocessFiles;
|
|
}());
|
|
|
|
module.exports = function (config) {
|
|
var commonConfig = configModule.getConfig(config, false),
|
|
files = _.flatten([libraryFiles, sourceFiles, specFiles, fixtureFiles, runAndConfigFiles]),
|
|
localConfig;
|
|
|
|
// add nocache in files if coverage is not set
|
|
if (!config.coverage) {
|
|
files.forEach(function (f) {
|
|
if (_.isObject(f)) {
|
|
f.nocache = true;
|
|
}
|
|
});
|
|
}
|
|
|
|
localConfig = {
|
|
files: files,
|
|
preprocessors: preprocessors
|
|
};
|
|
|
|
config.set(_.extend(commonConfig, localConfig));
|
|
};
|