functional test using jest code example

Example 1: 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 2: write unit test jest first before json function

const axios = require('axios');
const Users = require('./users');

jest.mock('axios');

test('should fetch users', () => {

    const users = [{
        "id": 1,
        "first_name": "Robert",
        "last_name": "Schwartz",
        "email": "[email protected]"
    }, {
        "id": 2,
        "first_name": "Lucy",
        "last_name": "Ballmer",
        "email": "[email protected]"
    }];

    const resp = { data : users };

    axios.get.mockImplementation(() => Promise.resolve(resp));

    Users.all().then(resp => expect(resp.data).toEqual(users));
});