1.1.0 • Published 9 years ago
run-with-mocha v1.1.0
run-with-mocha
run a script with mocha without
mochacommand
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).

Installation
npm install --save mocha run-with-mochaExample
"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