run-with-mocha

v1.1.0
run with mocha
mocha runner

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

npm i run-with-mocha

Metadata

  • MIT
  • >= 4.0.0
  • Nao Yonamine
  • released 10/20/2016

Downloads

Maintainers