@fatso83/run-in-mocha

Run a single test file programmatically from Node.


License
ISC
Install
npm install @fatso83/run-in-mocha@1.0.4

Documentation

run-in-mocha

Run a single test file in Mocha

Ask a test file to add its tests to Mocha and run itself

require("@fatso83/run-in-mocha")(__filename);

describe("a suite", function() {
  it("is a passing test", function() {
    // OK
  });

  it("is a failing test", function() {
    throw new Error("OMG, I failed!");
  });
});