mocha-context

0.1.5 • Public • Published

mocha-context

Build Status Coverage Status install size

Pass this context as the first argument of the arrow function.

Installation

npm install -D mocha-context

Usage

You can import patched functions from this module:

const {it} = require("mocha-context");

describe("my test", () => {
  it("skip me", t => {
    t.skip();
  });
});

Or replace global functions by requiring mocha-context/register:

require("mocha-context/register");

describe("my test", () => {
  it("skip me", t => {
    t.skip();
  });
});

You can tell mocha to --require the library from CLI, so you don't have to require() it manually:

$ mocha -r mocha-context/register
describe("my test", () => {
  it("skip me", t => {
    t.skip();
  });
});

You can also add it to mocha.opts which would be picked by CLI:

test/mocha.opts

-r mocha-context/register
$ mocha
describe("my test", () => {
  it("skip me", t => {
    t.skip();
  });
});

Similar projects

Changelog

  • 0.1.5 (May 24, 2018)

    • Fix: lib is not included in the dist.
  • 0.1.4 (May 24, 2018)

    • Fix: reference error when global doesn't exist.
  • 0.1.3 (May 24, 2018)

    • Fix: support xxx.only, xxx.skip.
    • Fix: hooks (before, beforeEach, etc) have different signature.
  • 0.1.2 (May 23, 2018)

    • Fix: register hook doesn't work with multiple test files.
  • 0.1.1 (May 23, 2018)

    • Fix: register hook.
  • 0.1.0 (May 22, 2018)

    • First release.

Readme

Keywords

none

Package Sidebar

Install

npm i mocha-context

Weekly Downloads

246

Version

0.1.5

License

MIT

Unpacked Size

6.29 kB

Total Files

6

Last publish

Collaborators

  • eight04