Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/onechiporenko/tests-checker

Checks mocha/chai/sinon tests for bad code (just for education purposes)
https://github.com/onechiporenko/tests-checker

Last synced: 1 day ago
JSON representation

Checks mocha/chai/sinon tests for bad code (just for education purposes)

Awesome Lists containing this project

README

        

# Tests checker

Module checks tests written with mocha/chai/sinon for issues:

* Usage `restore/spy/stub` in the `it`
* To many `expect` in the one `it`
* `it` with empty title

## Install

```
git clone https://github.com/onechiporenko/tests-checker
cd test-checker
npm i
# tests-checker will be available in your $PATH (optional)
npm link
```

## Usage

```
cd test-checker
# or if you linked simply run
tests-checker --help
```

Help:

```
node index.js --help
```

Check each file in the provided path

```
node index.js -p /my/folder/with/tests/**/*.js
```

Check each file in the provided path and save results to the file

```
node index.js -p /my/folder/with/tests/**/*.js -f output.txt --no-color
```