Skip to content

Maloric/tslint-jasmine-noSkipOrFocus

Repository files navigation

Purpose

It is fairly common in our team to focus on an individual test or describe in order to run it quickly whilst working on that part of the system. However we don't want to commit this focused test as it may cause the build to pass whilst only running a subset of the tests. This lint rule ensures that such a build would fail, because we do not allow focused tests or skipped tests to be pushed to the repository.

How to use?

npm install --save-dev tslint-jasmine-noSkipOrFocus

or add

"tslint-jasmine-noSkipOrFocus": "1.0.2"

to the devDependencies in your package.json.

Add the following to the tslint.config.json:

"rulesDirectory": [
    "node_modules/tslint-jasmine-noSkipOrFocus"
],
"no-focused-test": true,
"no-skipped-test": true,

Acknowledgements

Many thanks to Minko Gechev for creating Codelyzer, from which I borrowed the very useful test helper. And of course to Palantir Technologies for creating TSLint in the first place.

About

Linting rules to disallow focused or skipped tests.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published