🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

karma-nodeunit

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-nodeunit

A Karma plugin. Adapter for the Nodeunit testing framework.

0.2.0
latest
Version published
Maintainers
1
Created

karma-nodeunit

Adapter for the Nodeunit testing framework. For more information on Karma see the homepage.

Currently supports Karma 0.10.x

Build Status Dependency Status

Usage

  • npm install karma-nodeunit or add it to your package.json.
  • Include nodeunit and the karma adapter in your karma.conf.js:
frameworks = ['nodeunit'];

files = [
  'lib/*.js' // files to test
  'test/*.js' // test files
];
browsers = ['Chrome'];
  • Write your nodeunit tests:
nodeunit.run({
  testSomething: function(test) {
    test.expect(1);
    test.ok(true, "this assertion should pass");
    test.done();
  },
  'test something else': function(test) {
    test.ok(false, "this assertion should fail");
    test.done();
  }
});

Release history

  • 2013-11-18 v0.1.1 Fix #8, #9, and #10. Bump nodeunit to v0.8.2.
  • 2013-10-11 v0.1.0 Migration to karma 0.10.x. Travis CI.
  • 2013-03-21 v0.0.3 Linked to official karma plugins
  • 2013-03-21 v0.0.2 Usage examples, renamed from https://github.com/testacular/testacular-jasmine

FAQs

Package last updated on 29 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts