This package has been deprecated

Author message:

karma-gzip has been renamed to karma-gzip-preprocessor. Please point your dependencies to the new package.

karma-gzip

2.0.2 • Public • Published

DEPRECATED This package has been moved to karma-gzip-preprocessor

karma-gzip NPM version

A Karma preprocessor and server handler for serving gzipped test assets.

Particularly handy when working with large test bundles and remote browser-cloud services like Browserstack or Saucelabs.

Installation

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

npm install karma-gzip --save-dev

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({
    // We need to add some extra server middleware so that we can correctly
    // serve gzipped files
    plugins: [ 'karma-gzip' ],
    frameworks: [ 'gzip' ],
    files: [
      'src/**/*.js',
      'test/**/*.js'
    ],
 
    preprocessors: {
      // Only files marked for gzip preprocessing will be compressed.
      'test/large_test_bundle.js': [ 'gzip' ],
      'test/test_helper.coffee': [ 'coffee', 'gzip' ]
    }
  });
};

You can tell that your assets are being gzipped when you see output something like the following:

$ karma start --log-level=debug
 
INFO [preprocessor.gzip]: compressed /MyProject/test/test_helper.js [2MB -> 437KB]
INFO [preprocessor.gzip]: compressed /MyProject/test/test_index.js [5MB -> 1MB]
DEBUG [gzip-plugin]: serving (gzip): /MyProject/test/test_helper.js
DEBUG [gzip-plugin]: serving (gzip): /MyProject/test/test_index.js

License

MIT (http://www.opensource.org/licenses/mit-license.php)

Package Sidebar

Install

npm i karma-gzip

Weekly Downloads

670

Version

2.0.2

License

MIT

Unpacked Size

18.4 kB

Total Files

12

Last publish

Collaborators

  • greengremlin
  • justinmorris