selkhateeb / karma-closure

A Karma plugin. Resolve Google Closure dependencies on the fly.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

karma-closure Build Status

A Karma plugin that resolves Google Closure dependencies on the fly.

Installation

The easiest way is to keep karma-closure as a devDependency in your package.json.

{
  "devDependencies": {
    "karma": "~0.10",
    "karma-closure": "~0.1"
  }
}

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({
    frameworks: ['jasmine', 'closure'],
    files: [
      // closure base
      'lib/goog/base.js',

      // included files - tests
      'test/*.js',

      // source files - these are only watched and served
      {pattern: 'js/*.js', included: false},

      // external deps
      {pattern: 'lib/goog/deps.js', included: false, served: false}
    ],

    preprocessors: {
      // tests are preprocessed for dependencies (closure) and for iits
      'test/*.js': ['closure', 'closure-iit'],
      // source files are preprocessed for dependencies
      'js/*.js': ['closure'],
      // external deps
      'lib/goog/deps.js': ['closure-deps']
    },

    //To configure this plug-in add to karma config reporter section
    reporters : [ 'closure-sonar' ],
    // Enable this section to customize sonar reporter.
    // sonarReporter : {
    // // Output directory (defaults to '.').
    // outputDir: '.',
    // // File name (defaults to 'sonar.xml').
    // outputFile: 'sonar.xml'
},

  });
};

For an example project, check out ./test-app/

IIT preprocessor

When using iit or ddescribe, Jasmine only executes these tests (resp. the patched version that comes with Karma). But still, all the tests (even those that are not actually executed) are shipped to the browser, parsed and the definition of the tests is executed. On a huge project, this can easily take seconds.

The iit preprocessor looks for test files that contain iit and only ships these tests (and their dependencies), which can significantly speed up running the tests during the development !

Sonar Reporter

When using this reporter, it will generate report compatible with sonar Generic [Test Coverage Plug-in: http://docs.sonarqube.org/display/PLUG/Generic+Test+Coverage]

    //To configure this plug-in add to karma config reporter section
    reporters : [ 'closure-sonar' ],
    // Enable this section to customize sonar reporter.
    // sonarReporter : {
    // // Output directory (defaults to '.').
    // outputDir: '.',
    // // File name (defaults to 'sonar.xml').
    // outputFile: 'sonar.xml'

For more information on Karma see the homepage.

About

A Karma plugin. Resolve Google Closure dependencies on the fly.

License:MIT License


Languages

Language:JavaScript 66.0%Language:HTML 33.2%Language:CSS 0.7%Language:CoffeeScript 0.1%