mocha-only-detector

v1.0.1
Detect forgotten `describe.only` and `it.only` in mocha tests.
mocha only it.only describe.only checker detector assert

mocha-only-detector

Detect forgotten describe.only and it.only in mocha tests.

Install

npm i -g mocha-only-detector

Usage

If given two files:

// foo.js
describe.only('Foo', function () {
  it('should foobaz bar', function (done) {
    // ...
    done();
  });
});
// bar.js
describe('bar', function () {
  it('should foobar', function (done) {
    // ...
    done();
  });
});

Then running:

$ mocha-only-detector foo.js bar.js

will return the following error output and a non-zero exit code:

[Error: Error while checking foo.js: Contains describe.only or it.only]
npm i mocha-only-detector

Metadata

  • MIT
  • Whatever
  • Alberto Pose
  • released 4/6/2019

Downloads

Maintainers