🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

eslint-plugin-jest-async

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-jest-async

ESLint plugin to detect improper Jest test assertions for asynchronous (Promise-based) actions

1.0.3
latest
npm
Version published
Maintainers
1
Created
Source

eslint-plugin-jest-async

ESLint rules for Jest to detect improper test assertions for asynchronous (Promise-based) actions

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-jest-async:

$ npm install eslint-plugin-jest-async --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-jest-async globally.

Usage

Add jest-async to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "jest-async"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "jest-async/expect-return": "error"
    }
}

Supported Rules

Keywords

eslint

FAQs

Package last updated on 21 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts