1.0.9 • Published 7 years ago

tslint-jasmine-noSkipOrFocus v1.0.9

Weekly downloads
766
License
MIT
Repository
github
Last release
7 years ago

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 tsling.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.

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.2

8 years ago

1.0.0

8 years ago