Socket
Socket
Sign inDemoInstall

mocha

Package Overview
Dependencies
133
Maintainers
4
Versions
192
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mocha

simple, flexible, fun test framework


Version published
Weekly downloads
7.7M
decreased by-0.24%
Maintainers
4
Install size
6.00 MB
Created
Weekly downloads
 

Package description

What is mocha?

Mocha is a feature-rich JavaScript test framework running on Node.js and in the browser, making asynchronous testing simple and fun. Mocha tests run serially, allowing for flexible and accurate reporting, while mapping uncaught exceptions to the correct test cases.

What are mocha's main functionalities?

Test Organization

Organize tests in suites and sub-suites using describe() and context(), and specify test cases using it().

"use strict";\nconst assert = require('assert');\ndescribe('Array', function() {\n  describe('#indexOf()', function() {\n    it('should return -1 when the value is not present', function() {\n      assert.equal([1, 2, 3].indexOf(4), -1);\n    });\n  });\n});

Asynchronous Testing

Support for testing asynchronous code with ease, using callbacks, promises, or async/await.

"use strict";\nconst assert = require('assert');\ndescribe('User', function() {\n  describe('#save()', function() {\n    it('should save without error', function(done) {\n      const user = new User('Luna');\n      user.save(function(err) {\n        if (err) done(err);\n        else done();\n      });\n    });\n  });\n});

Hooks

Lifecycle hooks such as before(), after(), beforeEach(), and afterEach() for setting up preconditions and clean-up after tests.

"use strict";\ndescribe('Connection', function() {\n  before(function() {\n    // runs once before the first test in this block\n  });\n\n  after(function() {\n    // runs once after the last test in this block\n  });\n\n  beforeEach(function() {\n    // runs before each test in this block\n  });\n\n  afterEach(function() {\n    // runs after each test in this block\n  });\n\n  // test cases\n});

Other packages similar to mocha

Changelog

Source

6.2.3 / 2020-03-25

:lock: Security Fixes

  • 848d6fb8: Update dependencies mkdirp, yargs-parser and yargs (@juergba)

Readme

Source

Mocha test framework

:coffee: Simple, flexible, fun JavaScript test framework for Node.js & The Browser :coffee:

Build Status Coverage Status FOSSA Status Gitter OpenCollective OpenCollective


Mocha Browser Support h/t SauceLabs

Backers

Become a backer and show your support to our open source project.

MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer MochaJS Backer

Sponsors

Does your company use Mocha? Ask your manager or marketing team if your company would be interested in supporting our project. Support will allow the maintainers to dedicate more time for maintenance and new features for everyone. Also, your company's logo will show on GitHub and on our site - who doesn't want a little extra exposure? Here's the info.

MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor MochaJS Sponsor

Development

You might want to know that:

  • Mocha is the most-depended-upon module on npm (source: libraries.io), and
  • Mocha is an independent open-source project, maintained exclusively by volunteers.

You might want to help:

Finally, come chat with the maintainers on Gitter if you want to help with:

  • Triaging issues, answering questions
  • Review, merging, and closing pull requests
  • Other project-maintenance-y things

License

MIT

FOSSA Status

Keywords

FAQs

Last updated on 25 Mar 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc