Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bahmutov/stop-only
Detects '.only' left in the code accidentally
https://github.com/bahmutov/stop-only
bdd check cli hook only tdd
Last synced: 3 months ago
JSON representation
Detects '.only' left in the code accidentally
- Host: GitHub
- URL: https://github.com/bahmutov/stop-only
- Owner: bahmutov
- Created: 2017-08-11T16:52:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-27T22:42:39.000Z (3 months ago)
- Last Synced: 2024-09-30T08:39:24.533Z (3 months ago)
- Topics: bdd, check, cli, hook, only, tdd
- Language: JavaScript
- Size: 1.57 MB
- Stars: 11
- Watchers: 1
- Forks: 5
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# stop-only
> Detects '.only' left in the code accidentally. Works with "describe", "context" and "it".
[![NPM][npm-icon] ][npm-url]
[![Build status][ci-image] ][ci-url]
[![semantic-release][semantic-image] ][semantic-url]
[![renovate-app badge][renovate-badge]][renovate-app]## Install
Requires [Node](https://nodejs.org/en/), but this is a shell script.
```sh
npm install --save-dev stop-only
```## Use
### basic
Assuming the tests are in the folder "specs", I recommend create an NPM run script. Use `--folder` or `-f` to pass the folder(s) to search.
```json
{
"scripts": {
"stop-only": "stop-only --folder specs --folder bin"
}
}
```Exits with 1 if there is ".only" somewhere in the files inside "specs" folder or inside "bin" folder.
### warn
If you just want to warn on found `.only`, use `stop-only --warn --folder ` syntax. Alias `-w`.
### exclude folders
If you need to exclude certain folders, use `--skip` or `-s` option.
```json
{
"scripts": {
"stop-only": "stop-only --folder specs --skip node_modules"
}
}
```### exclude files
You can exclude files by name using `--exclude` or `-e` option.
```json
{
"scripts": {
"stop-only": "stop-only --folder specs --exclude foo-spec.js"
}
}
```### searching file
You can search a single file using `--file` argument
```text
stop-only --file tests/spec.js
```Or just warn
```text
stop-only --warn --file tests/spec.js
```### any text
You can search for any text (and not just `.only`) by passing the parameter `--text`. For example, to find stray ".pause()" commands left in your specs, you can do
```text
stop-only --folder specs --text '.pause()'
```### any multiple texts
You can search for multiple text strings by providing multiple `--text` arguments. For example, to find both `.only` and `.skip` strings
```text
stop-only --folder specs --text '.only' --text '.skip'
```### Pre-commit or pre-push hook
If using [pre-git][pre-git] to configure Git hooks, run this tool as a command
```json
{
"config": {
"pre-git": {
"pre-push": ["npm run stop-only"]
}
}
}
```See [package.json](package.json) (note here we have just local script name).
**tip** you can warn on commit hook, while fail in pre-push hook.
[pre-git]: https://github.com/bahmutov/pre-git#readme
### Check staged files only
You can catch left-over `.only` in staged files only (and not in the entire folder). For example by using [husky](https://github.com/typicode/husky) and [lint-staged](https://github.com/okonet/lint-staged) and `--file` argument.
```json
{
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "stop-only --file"
}
}
````lint-staged` in this case will call `stop-only --file ` for each staged file. You can see all commands by running Git commit command with `DEBUG=lint-staged*` environment variable.
### Commas
You can pass multiple folder names as separate arguments or comma-separated. These are equivalent
```
stop-only --folder foo --folder bar --skip src --skip source
stop-only -f foo -f bar -s src -s source
stop-only -f foo,bar -s src,source
```### Debugging
You can see additional diagnostic output from this command by running with environment variable `DEBUG=stop-only`
### CI
On CI run the tool after install, for example see [.travis.yml](.travis.yml),
(note here we have just local script name).```
- npm run stop-only
```### Small print
Author: Gleb Bahmutov <[email protected]> © 2017
* [@bahmutov](https://twitter.com/bahmutov)
* [glebbahmutov.com](https://glebbahmutov.com)
* [blog](https://glebbahmutov.com/blog)License: MIT - do anything with the code, but don't blame me if it does not work.
Support: if you find any problems with this module, email / tweet /
[open issue](https://github.com/bahmutov/stop-only/issues) on Github## MIT License
Copyright (c) 2017 Gleb Bahmutov <[email protected]>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.[npm-icon]: https://nodei.co/npm/stop-only.svg?downloads=true
[npm-url]: https://npmjs.org/package/stop-only
[ci-image]: https://github.com/bahmutov/stop-only/workflows/ci/badge.svg?branch=master
[ci-url]: https://github.com/bahmutov/stop-only/actions
[semantic-image]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
[semantic-url]: https://github.com/semantic-release/semantic-release
[renovate-badge]: https://img.shields.io/badge/renovate-app-blue.svg
[renovate-app]: https://renovateapp.com/