jest node code example

Example 1: how to install jest

npm install --save-dev jest

// Yarn
yarn add --dev jest

Example 2: what is jest

Jest is a JavaScript testing framework maintained by Facebook, Inc. with a
focus on simplicity.

It works with projects using: Babel, TypeScript, Node.js, React, Angular and
Vue.js.

It aims to work out of the box and config free.

Example 3: jest

const sum = require('./sum');

test('adds 1 + 2 to equal 3', () => {
  expect(sum(1, 2)).toBe(3);
});
Copy

Example 4: jest

function sum(a, b) {
  return a + b;
}
module.exports = sum;
Copied