1.1.0 • Published 8 years ago

run-with-mocha v1.1.0

Weekly downloads
6
License
MIT
Repository
github
Last release
8 years ago

run-with-mocha

Build Status NPM Version License

run a script with mocha without mocha command

If run a script without mocha command, run-with-mocha re-executes the script with mocha command. So, you can run tests directly without mocha command. I use this module for quick testing using atom-runner (Ctrl-R).

screen shot

Installation

npm install --save mocha run-with-mocha

Example

"use strict";

require("run-with-mocha");

const assert = require("assert");

describe("Array", () => {
  describe("#indexOf()", () => {
    it("should return index when the value is present", () => {
      const ary = [ 1, 2, 3 ];

      assert(ary.indexOf(0) === 2);
    });
  });
});

License

MIT

1.1.0

8 years ago

1.0.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago