Mocha 介绍

先来看看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. Hosted on GitHub.

阮一峰导师的测试框架 Mocha 实例教程

Mocha(发音"摩卡")诞生于2011年,是现在最流行的JavaScript测试框架之一,在浏览器和Node环境都可以使用。
所谓"测试框架",就是运行测试的工具。通过它,可以为JavaScript应用添加测试,从而保证代码的质量。

在开发过程中使用了 mocha 的著名项目

  1. selenium

    UI 自动化测试工具

  2. appium

    APP 自动化测试框架

  3. macaca
    macaca,跨平台测试框架的命令行工具

  4. express
    node.js web 框架

  5. socket.io
    用来快速开发 websocket 相关的工具。

  6. jest
    facebook 开源的 JavaScript 测试工具

  7. typescript
    微软开发的 typescript 语言

  8. vscode
    微软开发的新一代代码编辑器

  9. atom
    前端开发小哥爱用的代码编辑器


↙↙↙阅读原文可查看相关链接,并与作者交流