nodeunit-dsl

0.0.2 • Public • Published

nodeunit-dsl

A pretty dsl on top of nodeunit.

Installation

> git clone http://github.com/gerad/nodeunit-dsl.git
> npm link nodeunit-dsl

Usage

Create a test file.

// test/example.js

var dsl = require('nodeunit-dsl'),
  test = dsl.test, run = dsl.run,
  before = dsl.before, after = dsl.after;

if (module.id === '.') run(__filename);

before(function() {
  // do something before each test
});

test("it worked", function(t) {
  t.expect(1);
  t.ok('it worked');
  t.done();
});

after(function() {
  // do something after each test
});

Then run it.

> node tests/example.js

Alternatively, you can run all tests with the provided command line utility.

> nodeunit-dsl tests/

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i nodeunit-dsl

    Weekly Downloads

    1

    Version

    0.0.2

    License

    none

    Last publish

    Collaborators

    • gerad