You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
486 B
JavaScript

(function (root) {
'use strict';
var testDir = /base\/test/;
var isTestMain = /test-main.js$/;
var tests = Object.keys(root.__karma__.files).filter(function (file) {
return testDir.test(file) && !isTestMain.test(file);
});
require(['config'], function configRequire(mkConfig) {
var config = mkConfig('/base');
config.deps = tests;
config.baseUrl = '/base/static';
config.callback = root.__karma__.start;
require.config(config);
});
}(this));