diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-07-17 22:51:01 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-07-20 23:38:04 +0200 |
commit | 4877cd050b29e5868bb07f113b8bcf2a7ced5e1e (patch) | |
tree | 8eac0bc6220b4050634f4ef186c57eb13470fc2c /tests/karma.config.js | |
parent | 8d3f58c3917018a859917af377b8954910a3ba6e (diff) | |
download | nextcloud-server-4877cd050b29e5868bb07f113b8bcf2a7ced5e1e.tar.gz nextcloud-server-4877cd050b29e5868bb07f113b8bcf2a7ced5e1e.zip |
Bump karma config
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'tests/karma.config.js')
-rw-r--r-- | tests/karma.config.js | 126 |
1 files changed, 80 insertions, 46 deletions
diff --git a/tests/karma.config.js b/tests/karma.config.js index 3758636f074..0fd9b7b8019 100644 --- a/tests/karma.config.js +++ b/tests/karma.config.js @@ -1,23 +1,23 @@ /** -* ownCloud -* -* @author Vincent Petry -* @copyright 2014 Vincent Petry <pvince81@owncloud.com> -* -* This library is free software; you can redistribute it and/or -* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE -* License as published by the Free Software Foundation; either -* version 3 of the License, or any later version. -* -* This library is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU AFFERO GENERAL PUBLIC LICENSE for more details. -* -* You should have received a copy of the GNU Affero General Public -* License along with this library. If not, see <http://www.gnu.org/licenses/>. -* -*/ + * ownCloud + * + * @author Vincent Petry + * @copyright 2014 Vincent Petry <pvince81@owncloud.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + * + */ /** * This node module is run by the karma executable to specify its configuration. @@ -35,7 +35,6 @@ /* jshint node: true */ module.exports = function(config) { - function findApps() { /* var fs = require('fs'); @@ -115,12 +114,7 @@ module.exports = function(config) { name: 'settings', srcFiles: [ 'settings/js/apps.js', - 'settings/js/users/deleteHandler.js', 'core/vendor/marked/marked.min.js' - ], - testFiles: [ - 'settings/tests/js/appsSpec.js', - 'settings/tests/js/users/deleteHandlerSpec.js' ] } ]; @@ -130,14 +124,16 @@ module.exports = function(config) { // it is useful to disable coverage for debugging // because the coverage preprocessor will wrap the JS files somehow var enableCoverage = !parseInt(process.env.NOCOVERAGE, 10); - console.log('Coverage preprocessor: ', enableCoverage?'enabled':'disabled'); + console.log( + 'Coverage preprocessor: ', + enableCoverage ? 'enabled' : 'disabled' + ); // default apps to test when none is specified (TODO: read from filesystem ?) var appsToTest = process.env.KARMA_TESTSUITE; - if (appsToTest) { + if (appsToTest) { appsToTest = appsToTest.split(' '); - } - else { + } else { appsToTest = ['core'].concat(findApps()); } @@ -167,19 +163,19 @@ module.exports = function(config) { var srcFile, i; // add vendor library files - for ( i = 0; i < coreModule.vendor.length; i++ ) { + for (i = 0; i < coreModule.vendor.length; i++) { srcFile = vendorPath + coreModule.vendor[i]; files.push(srcFile); } // add core library files - for ( i = 0; i < coreModule.libraries.length; i++ ) { + for (i = 0; i < coreModule.libraries.length; i++) { srcFile = corePath + coreModule.libraries[i]; files.push(srcFile); } // add core modules files - for ( i = 0; i < coreModule.modules.length; i++ ) { + for (i = 0; i < coreModule.modules.length; i++) { srcFile = corePath + coreModule.modules[i]; files.push(srcFile); if (enableCoverage) { @@ -197,7 +193,7 @@ module.exports = function(config) { function addApp(app) { // if only a string was specified, expand to structure - if (typeof(app) === 'string') { + if (typeof app === 'string') { app = { srcFiles: 'apps/' + app + '/js/**/*.js', testFiles: 'apps/' + app + '/tests/js/**/*.js' @@ -217,23 +213,47 @@ module.exports = function(config) { } // add source files for apps to test - for ( i = 0; i < appsToTest.length; i++ ) { + for (i = 0; i < appsToTest.length; i++) { addApp(appsToTest[i]); } // serve images to avoid warnings - files.push({pattern: 'core/img/**/*', watched: false, included: false, served: true}); - files.push({pattern: 'core/css/images/*', watched: false, included: false, served: true}); + files.push({ + pattern: 'core/img/**/*', + watched: false, + included: false, + served: true + }); + files.push({ + pattern: 'core/css/images/*', + watched: false, + included: false, + served: true + }); // include core CSS - files.push({pattern: 'core/css/*.css', watched: true, included: true, served: true}); - files.push({pattern: 'tests/css/*.css', watched: true, included: true, served: true}); + files.push({ + pattern: 'core/css/*.css', + watched: true, + included: true, + served: true + }); + files.push({ + pattern: 'tests/css/*.css', + watched: true, + included: true, + served: true + }); // Allow fonts - files.push({pattern: 'core/fonts/*', watched: false, included: false, served: true}); + files.push({ + pattern: 'core/fonts/*', + watched: false, + included: false, + served: true + }); config.set({ - // base path, that will be used to resolve files and exclude basePath: '..', @@ -244,9 +264,7 @@ module.exports = function(config) { files: files, // list of files to exclude - exclude: [ - - ], + exclude: [], proxies: { // prevent warnings for images @@ -271,7 +289,7 @@ module.exports = function(config) { preprocessors: preprocessors, coverageReporter: { - dir:'tests/karma-coverage', + dir: 'tests/karma-coverage', reporters: [ { type: 'html' }, { type: 'cobertura' }, @@ -282,7 +300,6 @@ module.exports = function(config) { // enable / disable colors in the output (reporters and logs) colors: true, - // level of logging // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG logLevel: config.LOG_INFO, @@ -298,13 +315,30 @@ module.exports = function(config) { // - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`) // - PhantomJS // - IE (only Windows; has to be installed with `npm install karma-ie-launcher`) + // use PhantomJS_debug for extra local debug browsers: ['PhantomJS'], + plugins: [ + 'karma-phantomjs-launcher', + 'karma-coverage', + 'karma-jasmine', + 'karma-jasmine-sinon', + 'karma-viewport', + 'karma-junit-reporter' + ], + // you can define custom flags + customLaunchers: { + PhantomJS_debug: { + base: 'PhantomJS', + debug: true + } + }, + // If browser does not capture in given timeout [ms], kill it captureTimeout: 60000, // Continuous Integration mode // if true, it capture browsers, run tests and exit singleRun: false - }); + }); }; |