X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=Gruntfile.js;h=4cc9721857c37fdfcc9afad2d93db6d05870c015;hb=ca8e1ed0aadeae16de197aa5be512fb1ed93b5be;hp=3fee6bad51e0629a542af37cabc3b8f8c00fc079;hpb=f780eaedb1a27c59b0c9d5e859292fb2c05c1fc8;p=lhc%2Fweb%2Fwiklou.git diff --git a/Gruntfile.js b/Gruntfile.js index 3fee6bad51..4cc9721857 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -14,7 +14,10 @@ module.exports = function ( grunt ) { grunt.loadNpmTasks( 'grunt-karma' ); grunt.loadNpmTasks( 'grunt-stylelint' ); - karmaProxy[ wgScriptPath ] = wgServer + wgScriptPath; + karmaProxy[ wgScriptPath ] = { + target: wgServer + wgScriptPath, + changeOrigin: true + }; grunt.initConfig( { eslint: { @@ -34,7 +37,6 @@ module.exports = function ( grunt ) { // Skip functions aren't even parseable '!resources/src/dom-level2-skip.js', '!resources/src/es5-skip.js', - '!resources/src/json-skip.js', '!resources/src/mediawiki.hidpi-skip.js' ] }, @@ -86,6 +88,9 @@ module.exports = function ( grunt ) { main: { browsers: [ 'Chrome' ] }, + chromium: { + browsers: [ 'Chromium' ] + }, more: { browsers: [ 'Chrome', 'Firefox' ] }