Skip to content

Latest commit

 

History

History
64 lines (43 loc) · 1.28 KB

no-global-tests.md

File metadata and controls

64 lines (43 loc) · 1.28 KB

Disallow global tests (mocha/no-global-tests)

💼 This rule is enabled in the ✅ recommended config.

Mocha gives you the possibility to structure your tests inside of suites using describe, suite or context.

Example:

describe('something', function () {
    it('should work', function () {});
});

This rule aims to prevent writing tests outside of test-suites:

it('should work', function () {});

Rule Details

This rule checks each mocha test function to not be located directly in the global scope.

The following patterns are considered problems:

it('foo');

test('bar');

it.only('foo');

test.skip('bar');

These patterns would not be considered problems:

describe('foo', function () {
    it('bar');
});

suite('foo', function () {
    test('bar');
});

Caveats

It is not always possible to statically detect in which scope a mocha test function will be used at runtime. For example imagine a parameterized test which is generated inside of a forEach callback:

function parameterizedTest(params) {
    params.forEach(function (i) {
        it('should work with ' + i, function () {});
    });
}

parameterizedTest([1,2,3]);