Socket
Socket
Sign inDemoInstall

karma

Package Overview
Dependencies
160
Maintainers
5
Versions
212
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
Previous1
18192122Next

0.10.1

Diff

Changelog

Source

v0.10.1 (2013-08-06)

Bug Fixes
  • cli: Always pass an instance of fs to processArgs. (06532b70, closes #677)
  • init: set default filename (34d49b13, closes #680, #681)

<a name="v0.10.0"></a>

vojtajina
published 0.10.0 •

Changelog

Source

v0.10.0 (2013-08-06)

<a name="v0.9.8"></a>

vojtajina
published 0.9.8 •

Changelog

Source

v0.9.8 (2013-08-05)

Bug Fixes
  • init: install plugin as dev dependency (46b7a402)
  • runner: do not confuse client args with the config file (6f158aba)
Features
  • config: default config can be karma.conf.js or karma.conf.coffee (d4a06f29)
  • runner:

<a name="v0.9.7"></a>

vojtajina
published 0.9.7 •

Changelog

Source

v0.9.7 (2013-07-31)

Bug Fixes
  • init: trim the inputs (b72355cb, closes #663)
  • web-server: correct urlRegex in custom handlers (a641c2c1)
Features
  • basic bash/zsh completion (9dc1cf6a)
  • runner: allow passing changed/added/removed files (b598106d)
  • watcher: make the batching delay configurable (fa139312)

<a name="v0.9.6"></a>

vojtajina
published 0.8.8 •

vojtajina
published 0.9.6 •

Changelog

Source

v0.9.6 (2013-07-28)

Features
  • pass command line opts through to browser (00d63d0b)
  • web-server: compress responses (gzip/deflate) (8e8a2d44)
Breaking Changes
  • runnerPort is merged with port if you are using karma run with custom --runer-port, please change that to --port. (ca4c4d88)

<a name="v0.9.5"></a>

vojtajina
published 0.9.5 •

Changelog

Source

v0.9.5 (2013-07-21)

Bug Fixes
  • detect a full page reload, show error and recover (15d80f47, closes #27)
  • better serialization in dump/console.log (fd46365d, closes #640)
  • browsers_change event always has collection as arg (42bf787f)
  • init: generate config with the new syntax (6b27fee5)
  • reporter: prevent throwing exception when null is sent to formatter (3b49c385)
  • watcher: ignore fs.stat errors (74ccc9a8)
Features

<a name="v0.9.4"></a>

vojtajina
published 0.8.7 •

vojtajina
published 0.9.4 •

Changelog

Source

v0.9.4 (2013-06-28)

Bug Fixes
  • config:
    • make the config changes backwards compatible (593ad853)
    • better errors if file invalid or does not exist (74b533be)
    • allow parsing the config multiple times (78a7094e)
  • launcher: better errors when loading launchers (504e848c)
  • preprocessor:
    • do not show duplicate warnings (47c641f7)
    • better errors when loading preprocessors (3390a00b)
  • reporter: better errors when loading reporters (c645c060)
Features
  • config: pass the config object rather than a wrapper (d2a3c854)
Breaking Changes
  • please update your karma.conf.js as follows (d2a3c854):
// before:
module.exports = function(karma) {
  karma.configure({port: 123});
  karma.defineLauncher('x', 'Chrome', {
    flags: ['--disable-web-security']
  });
  karma.definePreprocessor('y', 'coffee', {
    bare: false
  });
  karma.defineReporter('z', 'coverage', {
    type: 'html'
  });
};

// after:
module.exports = function(config) {
  config.set({
    port: 123,
    customLaunchers: {
      'x': {
        base: 'Chrome',
        flags: ['--disable-web-security']
      }
    },
    customPreprocessors: {
      'y': {
        base: 'coffee',
        bare: false
      }
    },
    customReporters: {
      'z': {
        base: 'coverage',
        type: 'html'
      }
    }
  });
};

<a name="v0.9.3"></a>

vojtajina
published 0.8.6 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc