Need advice about which tool to choose?Ask the StackShare community!

ESLint

30.5K
14K
+ 1
28
Jest

10K
4.1K
+ 1
175
Add tool

ESLint vs Jest: What are the differences?

Key Differences between ESLint and Jest

ESLint and Jest are both popular tools used in web development. While they serve different purposes, they have key differences that set them apart from each other.

  1. Purpose: ESLint is a static code analysis tool used to identify and report patterns and problems in JavaScript code. It helps enforce coding standards and best practices. On the other hand, Jest is a testing framework primarily used for testing JavaScript code. It provides a testing environment and tools for writing unit tests, integration tests, and snapshots.

  2. Configuration: ESLint requires a configuration file (.eslintrc) to set rules, environments, and extensions for linting. It offers a wide range of configurable options to customize the linting process. In contrast, Jest requires a configuration file (jest.config.js) to define its behavior and settings for running tests. It provides options to configure test environments, test patterns, and reporter output.

  3. Usage: ESLint can be integrated into various development environments, editors, and build systems. It helps developers catch syntax errors, logical errors, and maintain consistent code style. It can be run as part of a build process or in an integrated development environment (IDE). Jest, on the other hand, is primarily used in the command line interface (CLI) to run tests. It provides a rich set of matchers, assertions, and utilities for testing JavaScript code.

  4. Test Coverage: Jest includes built-in functionality for generating code coverage reports. It can track the lines of code executed during the tests and provide insights into the code coverage percentage. ESLint, however, does not have built-in support for code coverage analysis. Developers would need to use separate tools or plugins to analyze test coverage when using ESLint.

  5. Test Runners: Jest comes with its own test runner, which allows parallel and isolated execution of test cases. It has built-in features like test filtering, test watch mode, and test caching for faster execution. ESLint, on the other hand, is not a test runner and does not have the ability to execute tests. It focuses on analyzing code and providing feedback on potential issues.

  6. Integration with Other Tools: Both ESLint and Jest can be integrated with various other tools and libraries. ESLint has integrations with editors like Visual Studio Code and build systems like Webpack. It can also be extended with plugins to support additional rules and custom configurations. Jest, on the other hand, can be integrated with tools like Babel for transpiling code, Enzyme for testing React components, and Puppeteer for testing web applications.

In summary, ESLint is a code analysis tool used to enforce coding standards and catch potential issues in JavaScript code, while Jest is a testing framework used for writing and running tests. They differ in their purpose, configuration, usage, test coverage, test runners, and integration capabilities.

Advice on ESLint and Jest
Needs advice
on
ESLintESLintSass Lint Sass Lint
and
StylelintStylelint

Scenario: I want to integrate Prettier in our code base which is currently using ESLint (for .js and .scss both). The project is using gulp.

It doesn't feel quite right to me to use ESLint, I wonder if it would be better to use Stylelint or Sass Lint instead.

I completed integrating ESLint + Prettier, Planning to do the same with [ Stylelint || Sasslint || EsLint] + Prettier.

And have gulp 'fix' on file save (Watcher).

Any recommendation is appreciated.

See more
Replies (3)
Amaro Mariño
Senior Frontend Developer at Landbot.io · | 6 upvotes · 171.3K views
Recommends
on
ESLintESLint

In the case of .js files I would recommend using both Eslint and Prettier.

You can set up Prettier as an Eslint rule using the following plugin:

https://github.com/prettier/eslint-plugin-prettier

And in order to avoid conflicts between Prettier and Eslint, you can use this config:

https://github.com/prettier/eslint-config-prettier

Which turns off all Eslint rules that are unnecessary or might conflict with Prettier.

See more
Alex Spieslechner

you don't actually have to choose between these tools as they have vastly different purposes. i think its more a matter of understanding how to use them.

while eslint and stylelint are used to notify you about code quality issues, to guide you to write better code, prettier automatically handles code formatting (without notifying me). nothing else.

prettier and eslint both officially discourage using the eslint-plugin-prettier way, as these tools actually do very different things. autofixing with linters on watch isnt a great idea either. auto-fixing should only be done intentionally. you're not alone though, as a lot of devs set this up wrong.

i encourage you to think about what problem you're trying to solve and configure accordingly.

for my teams i set it up like this: - eslint, stylelint, prettier locally installed for cli use and ide support - eslint config prettier (code formatting rules are not eslints business, so dont warn me about it) - vscode workspace config: format on save - separate npm scripts for linting, and formatting - precommit hooks (husky)

so you can easily integrate with gulp. its just js after all ;)

See more
Alexis Villegas Torres
Software Engineer at SpeedUrWeb · | 5 upvotes · 170.7K views
Recommends
on
StylelintStylelint

Pura vida! Well, I had a similar issue and at the end I decided to use Stylelint + Prettier for that job, in our case, we wanted that our linting process includes the SCSS files and not only the JS file, base on that we concluded that using only ESLint to do both things wasn't the best option, so, we integrated prettier with Stylelint, and for that we used a neat plugin that allowed us to use Prettier inside Stylelint here is the link, https://github.com/prettier/stylelint-prettier#recommended-configuration, I hope that this can help you, hasta pronto!, :)

See more
Decisions about ESLint and Jest
Shared insights
on
CypressCypressJestJest

As we all know testing is an important part of any application. To assist with our testing we are going to use both Cypress and Jest. We feel these tools complement each other and will help us get good coverage of our code. We will use Cypress for our end to end testing as we've found it quite user friendly. Jest will be used for our unit tests because we've seen how many larger companies use it with great success.

See more

Postman will be used to do integration testing with the backend API we create. It offers a clean interface to create many requests, and you can even organize these requests into collections. It helps to test the backend API first to make sure it's working before using it in the front-end. Jest can also be used for testing and is already embedded into React. Not only does it offer unit testing support in javascript, it can also do snapshot testing for the front-end to make sure components are rendering correctly. Enzyme is complementary to Jest and offers more functions such as shallow rendering. UnitTest will be used for Python testing as it is simple, has a lot of functionality and already built in with python. Sentry will be used for keeping track of errors as it is also easily integratable with Heroku because they offer it as an add-on. LogDNA will be used for tracking logs which are not errors and is also a Heroku add-on. Its good to have a separate service to record logs, monitor, track and even fix errors in real-time so our application can run more smoothly.

See more
Manage your open source components, licenses, and vulnerabilities
Learn More
Pros of ESLint
Pros of Jest
  • 8
    Consistent javascript - opinions don't matter anymore
  • 6
    Free
  • 6
    IDE Integration
  • 4
    Customizable
  • 2
    Focuses code review on quality not style
  • 2
    Broad ecosystem of support & users
  • 36
    Open source
  • 32
    Mock by default makes testing much simpler
  • 23
    Testing React Native Apps
  • 20
    Parallel test running
  • 16
    Fast
  • 13
    Bundled with JSDOM to enable DOM testing
  • 8
    Mock by default screws up your classes, breaking tests
  • 7
    Out of the box code coverage
  • 7
    Promise support
  • 6
    One stop shop for unit testing
  • 3
    Great documentation
  • 2
    Assert Library Included
  • 1
    Built in watch option with interactive filtering menu
  • 1
    Preset support
  • 0
    Can be used for BDD
  • 0
    Karma

Sign up to add or upvote prosMake informed product decisions

Cons of ESLint
Cons of Jest
    Be the first to leave a con
    • 4
      Documentation
    • 4
      Ambiguous configuration
    • 3
      Difficult
    • 2
      Many bugs still not fixed months/years after reporting
    • 2
      Multiple error messages for same error
    • 2
      Difficult to run single test/describe/file
    • 2
      Ambiguous
    • 2
      Bugged
    • 1
      BeforeAll timing out makes all passing tests fail
    • 1
      Slow
    • 1
      Reporter is too general
    • 1
      Unstable
    • 1
      Bad docs
    • 1
      Still does't support .mjs files natively
    • 1
      Can't fail beforeAll to abort tests
    • 0
      Interaction with watch mode on terminal

    Sign up to add or upvote consMake informed product decisions

    - No public GitHub repository available -

    What is ESLint?

    A pluggable and configurable linter tool for identifying and reporting on patterns in JavaScript. Maintain your code quality with ease.

    What is Jest?

    Jest provides you with multiple layers on top of Jasmine.

    Need advice about which tool to choose?Ask the StackShare community!

    What companies use ESLint?
    What companies use Jest?
    Manage your open source components, licenses, and vulnerabilities
    Learn More

    Sign up to get full access to all the companiesMake informed product decisions

    What tools integrate with ESLint?
    What tools integrate with Jest?

    Sign up to get full access to all the tool integrationsMake informed product decisions

    Blog Posts

    What are some alternatives to ESLint and Jest?
    TSLint
    An extensible static analysis tool that checks TypeScript code for readability, maintainability, and functionality errors. It is widely supported across modern editors & build systems and can be customized with your own lint rules, configurations, and formatters.
    Prettier
    Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.
    JSLint
    It is a static code analysis tool used in software development for checking if JavaScript source code complies with coding rules. It is provided primarily as a browser-based web application accessible through their domain, but there are also command-line adaptations.
    JSHint
    It is a community-driven tool to detect errors and potential problems in JavaScript code. It is open source and can easily adjust in the environment you expect your code to execute.
    SonarQube
    SonarQube provides an overview of the overall health of your source code and even more importantly, it highlights issues found on new code. With a Quality Gate set on your project, you will simply fix the Leak and start mechanically improving.
    See all alternatives