How to test Node js apps using Mocha Chai and Sinonjs

0 votes
Can you tell me How to test Node.js apps using Mocha Chai and Sinonjs?
Mar 12 in Node-js by Ashutosh
• 24,610 points
63 views

1 answer to this question.

0 votes

You can test Node.js apps using Mocha, Chai, and Sinon.js for unit and integration testing.

Steps:

1. Install Dependencies

npm install mocha chai sinon --save-dev

2. Create a Sample Function (app.js)

function add(a, b) {

    return a + b;

}

module.exports = { add };

3. Write Test Cases (test/app.test.js)

const { expect } = require('chai');

const sinon = require('sinon');

const { add } = require('../app');

describe('Math Functions', () => {

    it('should return sum of two numbers', () => {

        expect(add(2, 3)).to.equal(5);

    });

    it('should spy on a function call', () => {

        const spy = sinon.spy(add);

        spy(1, 2);

        expect(spy.calledOnce).to.be.true;

    });

});

4. Run Tests

npx mocha test/app.test.js

answered Mar 12 by Tanvi

Related Questions In Node-js

0 votes
1 answer

How to create a directory if it doesn't exist using Node.js?

Hello @kartik, Try: var fs = require('fs'); var dir = ...READ MORE

answered Jul 9, 2020 in Node-js by Niroj
• 82,840 points
6,439 views
0 votes
1 answer

How to parse JSON using Node.js?

Hello @kartik, You can simply use JSON.parse. The definition of ...READ MORE

answered Jul 20, 2020 in Node-js by Niroj
• 82,840 points
773 views
0 votes
1 answer

How to create a directory if it doesn't exist using Node.js?

Hello @kartik, Try this: var fs = require('fs'); var dir ...READ MORE

answered Jul 20, 2020 in Node-js by Niroj
• 82,840 points
1,069 views
0 votes
1 answer

How to update a value in a json file and save it through node.js?

//install ciql-json : npm i ciql-json const ciqlJson ...READ MORE

answered May 26, 2021 in Node-js by Sirus

edited Mar 5 26,225 views
0 votes
1 answer

How to use async functions effectively in React components?

To use async functions effectively in React ...READ MORE

answered Mar 12 in Node-js by Sahil
67 views
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

How does Babel differ from JSX?

Feature Babel JSX Definition A JavaScript compiler that transforms ES6+ code ...READ MORE

answered Mar 12 in Java-Script by Sahil
103 views
0 votes
1 answer

How to pass request query parameters through a Node.js application?

Using Node.js http Module Step 1: Basic Server ...READ MORE

answered Dec 13, 2024 in Node-js by Navya
123 views
0 votes
1 answer

How to Handle Errors for Async Code in Node.js

To handle errors in the correct way ...READ MORE

answered Dec 17, 2024 in Node-js by Navya
120 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP