This basically commits the transpiled CoffeeScript JS (with minor cleanup) and removes coffee build support. A tiny amount of support for xblocks exists, because external users may have xblocks with coffee. But no coffee in our tree anyway.
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
/* eslint-env node */
|
|
|
|
// Karma config for cms suite.
|
|
// Docs and troubleshooting tips in common/static/common/js/karma.common.conf.js
|
|
|
|
'use strict';
|
|
var path = require('path');
|
|
var configModule = require(path.join(__dirname, '../../common/static/common/js/karma.common.conf.js'));
|
|
|
|
var options = {
|
|
|
|
includeCommonFiles: true,
|
|
|
|
libraryFiles: [],
|
|
|
|
libraryFilesToInclude: [
|
|
{pattern: 'common/js/vendor/jquery.js', included: true},
|
|
{pattern: 'common/js/vendor/jquery-migrate.js', included: true}
|
|
],
|
|
|
|
// Make sure the patterns in sourceFiles and specFiles do not match the same file.
|
|
// Otherwise Istanbul which is used for coverage tracking will cause tests to not run.
|
|
sourceFiles: [
|
|
{pattern: 'cms/**/!(*spec|djangojs).js'},
|
|
{pattern: 'js/**/!(*spec|djangojs).js'}
|
|
],
|
|
|
|
specFiles: [
|
|
{pattern: 'cms/**/*spec.js'},
|
|
{pattern: 'js/certificates/spec/**/*spec.js'},
|
|
{pattern: 'js/spec/**/*spec.js'}
|
|
],
|
|
|
|
fixtureFiles: [
|
|
{pattern: '../templates/js/**/*.underscore'},
|
|
{pattern: 'templates/**/*.underscore'}
|
|
],
|
|
|
|
runFiles: [
|
|
{pattern: 'cms/js/spec/main.js', included: true}
|
|
]
|
|
};
|
|
|
|
module.exports = function(config) {
|
|
configModule.configure(config, options);
|
|
};
|