UNPKG

mocha-only-detector

Version:

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

9 lines (7 loc) 149 B
describe('foo', function () { describe.only('bar', function () { it('should work', function () { console.log('here'); }); }); });