Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
eslint-plugin-jest-formatting
Advanced tools
eslint-plugin-jest-formatting is an ESLint plugin that enforces consistent formatting for Jest test suites. It helps maintain a uniform style across your test files, making them easier to read and maintain.
Enforce consistent test block spacing
This rule ensures that there is consistent padding around test blocks, improving readability.
module.exports = {
"plugins": ["jest-formatting"],
"rules": {
"jest-formatting/padding-around-test-blocks": "error"
}
};
Enforce consistent describe block spacing
This rule ensures that there is consistent padding around describe blocks, making the structure of the tests clearer.
module.exports = {
"plugins": ["jest-formatting"],
"rules": {
"jest-formatting/padding-around-describe-blocks": "error"
}
};
Enforce consistent expect statement spacing
This rule ensures that there is consistent padding around all Jest blocks, including expect statements, for a uniform look.
module.exports = {
"plugins": ["jest-formatting"],
"rules": {
"jest-formatting/padding-around-all": "error"
}
};
eslint-plugin-jest provides a set of ESLint rules specific to Jest. While it focuses more on best practices and avoiding common pitfalls in Jest tests, it does not specifically enforce formatting rules like eslint-plugin-jest-formatting.
eslint-plugin-testing-library is an ESLint plugin for Testing Library. It enforces best practices and helps avoid common mistakes when using Testing Library, but it does not focus on formatting rules for Jest tests.
eslint-plugin-jasmine provides linting rules for Jasmine test suites. It is similar in purpose to eslint-plugin-jest but is tailored for Jasmine rather than Jest. It does not enforce formatting rules like eslint-plugin-jest-formatting.
This project aims to provide formatting rules (auto-fixable where possible) to ensure consistency and readability in jest test suites.
Like this plugin? Say thanks with a ⭐️
You'll first need to install ESLint:
$ yarn add eslint -dev
Next, install eslint-plugin-jest-formatting
:
$ yarn add eslint-plugin-jest-formatting --dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-jest-formatting
globally.
Add jest-formatting
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["jest-formatting"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"jest-formatting/padding-before-all": 2
}
}
or
{
"rules": {
"jest-formatting/padding-before-describe-blocks": 2,
"jest-formatting/padding-before-test-blocks": 2
}
}
v0.1.0 - July 20, 2019
padding-before-all
padding-before-after-all-blocks
padding-before-after-each-blocks
padding-before-before-all-blocks
padding-before-before-each-blocks
padding-before-expect-statements
FAQs
ESLint rules for formatting jest tests
The npm package eslint-plugin-jest-formatting receives a total of 445,422 weekly downloads. As such, eslint-plugin-jest-formatting popularity was classified as popular.
We found that eslint-plugin-jest-formatting demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.