Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 691 Bytes

MOCHA.md

File metadata and controls

7 lines (4 loc) · 691 Bytes

Mocha

Mocha is an extensible, open-source Javascript testing framework that runs in Node.js or the browser. It supports both test-driven development (TDD) and behavior-driven development (BDD) by allowing you to use any assertion library, such as expect.js, should.js, and chai.

Mocha supports spies, stubs and mocks through libraries, such as Sinon.

Mocha supports testing both synchronous and asynchronous code, including promises.