Skip to content

mohayonao/run-with-mocha

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

run a script with mocha without mocha command

Resources

Stars

Watchers

Forks

Packages

No packages published