Tutorial

Introduction to Testing With Jest

Published on May 24, 2017
    Default avatar

    By Matthew Garcia

    Introduction to Testing With Jest

    While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

    Jest is a JavaScript testing framework requiring little to no configuration. Here’s a quick post to get you up and running with it.

    Setting Up Jest

    Are you using create-react-app? If so, Jest is already installed, so you can skip this part. Thanks, vertical integration!

    It’s pretty straightforward. Install it via Yarn (or NPM):

    yarn add --dev jest
    

    And add a script for it in package.json:

    "scripts": {
      "test": "jest"
    }
    

    If you wanna use Babel in your tests, just install babel-jest:

    yarn add --dev babel-jest
    

    Creating Test Files

    Jest will treat any file that ends in .test.js or .spec.js as a test file. So, if you have a file called divide.js, you can put a divide.test.js next to it in the same directory and Jest will pick it up when it runs.

    Jest will also consider files that are in a __TESTS__ folder to be test files, if you want to keep your tests separate.

    Writing Tests

    Jest injects a number of globals into test files, so there’s nothing to import other than the stuff you want to test. So, if you have a divide.js like:

    export default function divide(dividend, divisor) {
      if (divisor === 0) {
        throw new Error('Division by zero.');
      }
      return dividend / divisor;
    }
    

    Your divide.test.js would look something like:

    import divide from './divide';
    
    // Describe the test and wrap it in a function.
    it('divides down to the nearest integer.', () => {
      const result = divide(5, 2);
    
      // Jest uses matchers, like pretty much any other JavaScript testing framework.
      // They're designed to be easy to get at a glance;
      // here, you're expecting `result` to be 2.5.
      expect(result).toBe(2.5);
    });
    

    From there, just run your script:

    yarn run test
    

    And Jest will run your tests.

    Coverage

    One of the best things about Jest is how easy it is to get code coverage. All you have to do is pass in the coverage flag and Jest will handle the rest. So, for the example in the last section, just change the command to:

    yarn run test -- --coverage
    

    And it’ll give you the coverage:

    👑 This is just an introduction; there is so much more to Jest.

    Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

    Learn more about us


    About the authors
    Default avatar
    Matthew Garcia

    author

    Still looking for an answer?

    Ask a questionSearch for more help

    Was this helpful?
     
    1 Comments
    

    This textbox defaults to using Markdown to format your answer.

    You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

    I know this is article is just a quick intro to Jest but the use of ES6+ import/export for modules is unfortunate for an example since Jest does not yet appear to support this out of the box - and support for modules is currently, still, an experimental feature. I think the article should either use a different example or point this out.

    Try DigitalOcean for free

    Click below to sign up and get $200 of credit to try our products over 60 days!

    Sign up

    Join the Tech Talk
    Success! Thank you! Please check your email for further details.

    Please complete your information!

    Get our biweekly newsletter

    Sign up for Infrastructure as a Newsletter.

    Hollie's Hub for Good

    Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

    Become a contributor

    Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

    Welcome to the developer cloud

    DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

    Learn more
    DigitalOcean Cloud Control Panel