Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
eslint-plugin-jasmine
Advanced tools
eslint-plugin-jasmine is an ESLint plugin that provides linting rules specific to Jasmine, a popular testing framework for JavaScript. This plugin helps ensure that Jasmine tests follow best practices and maintain consistency.
no-focused-tests
This rule disallows the use of focused tests (e.g., `fit` and `fdescribe`) to prevent accidentally committing them.
module.exports = {
"rules": {
"jasmine/no-focused-tests": "error"
}
};
no-disabled-tests
This rule warns against the use of disabled tests (e.g., `xdescribe` and `xit`) to ensure that all tests are active.
module.exports = {
"rules": {
"jasmine/no-disabled-tests": "warn"
}
};
no-suite-dupes
This rule prevents the creation of duplicate test suite names, which can cause confusion and errors in test reporting.
module.exports = {
"rules": {
"jasmine/no-suite-dupes": "error"
}
};
no-spec-dupes
This rule prevents the creation of duplicate test spec names within a suite, ensuring each test is unique and easily identifiable.
module.exports = {
"rules": {
"jasmine/no-spec-dupes": ["error", "branch"]
}
};
prefer-toHaveBeenCalledWith
This rule encourages the use of `toHaveBeenCalledWith` over `toHaveBeenCalled` to make assertions more specific and meaningful.
module.exports = {
"rules": {
"jasmine/prefer-toHaveBeenCalledWith": "warn"
}
};
eslint-plugin-jest is an ESLint plugin for Jest, another popular testing framework. It provides similar linting rules to ensure best practices and consistency in Jest tests. While eslint-plugin-jasmine is tailored for Jasmine, eslint-plugin-jest is specifically designed for Jest.
eslint-plugin-mocha is an ESLint plugin for Mocha, a feature-rich JavaScript test framework. It offers linting rules to enforce best practices and consistency in Mocha tests. Like eslint-plugin-jasmine, it focuses on a specific testing framework, but for Mocha instead of Jasmine.
eslint-plugin-qunit is an ESLint plugin for QUnit, a powerful, easy-to-use JavaScript unit testing framework. It provides linting rules to ensure best practices and consistency in QUnit tests. This plugin is similar to eslint-plugin-jasmine but is designed for QUnit.
ESLint rules for Jasmine
Install eslint-plugin-jasmine
as a dev-dependency:
npm install --save-dev eslint-plugin-jasmine
Enable the plugin by adding it to your .eslintrc
:
plugins:
- jasmine
This plugin ships with a default configuration for each rule:
Rule | Default | Options |
---|---|---|
no-focused-tests | 2 | |
no-disabled-tests | 1 | |
no-spec-dupes | 1, 'block' | ['block', 'branch'] |
no-suite-dupes | 1, 'block' | ['block', 'branch'] |
no-suite-callback-args | 2 | |
missing-expect | 0, 'expect()' | expectation function names |
For example, the no-focused-tests
rule is enabled by default and will cause
ESLint to throw an error (with an exit code of 1
) when triggered.
You may customise each rule by adding a value in your .eslintrc
rules
property:
plugins:
- jasmine
rules:
jasmine/no-focused-tests: 0
jasmine/no-suite-dupes:
- 2
- "branch"
See configuring rules for more information.
© 2015 Tom Vincent git@tlvince.com
Licensed under the MIT license.
FAQs
ESLint rules for Jasmine
The npm package eslint-plugin-jasmine receives a total of 174,159 weekly downloads. As such, eslint-plugin-jasmine popularity was classified as popular.
We found that eslint-plugin-jasmine demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.