karma-closure

0.1.3 • Public • Published

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']
    }
  });
};

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 !


For more information on Karma see the homepage.

Readme

Keywords

Package Sidebar

Install

npm i karma-closure

Weekly Downloads

357

Version

0.1.3

License

MIT

Unpacked Size

15 kB

Total Files

10

Last publish

Collaborators

  • scottsandersdev
  • vojtajina
  • zzo