/
githubmirror
/
angular.js
Обзор
Документация
Войти
/
githubmirror
/
angular.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
karma-jquery.conf-factory.js
25 строк
624 B
Michał Gołębiowski
chore(*): switch from JSHint/JSCS to ESLint
05 авг 2016, 23:18
05 авг 2016, 23:18
c322032
Код
Авторство
О чём код?
'use strict'; var angularFiles = require('./angularFiles'); var sharedConfig = require('./karma-shared.conf'); module.exports = function(version) { version = version || ''; return function(config) { sharedConfig(config, { testName: 'AngularJS: jQuery' + (version ? ' ' + version : ''), logFile: 'karma-jquery' + version + '.log' }); config.set({ files: angularFiles.mergeFilesFor('karmaJquery' + version), exclude: angularFiles.mergeFilesFor('karmaJqueryExclude'), junitReporter: { outputFile: 'test_out/jquery.xml', suite: 'jQuery' } }); }; };