Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/harish2704/simple-mocha

Simple stupid implementation of Mocha test runner. Tests can be run directly within node as any Nodejs code.
https://github.com/harish2704/simple-mocha

Last synced: 5 days ago
JSON representation

Simple stupid implementation of Mocha test runner. Tests can be run directly within node as any Nodejs code.

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/harish2704/simple-mocha.svg?branch=master)](https://travis-ci.org/harish2704/simple-mocha)
# simple-mocha
Simple stupid implementation of Mocha test runner. Tests can be run directly within node as any Nodejs code.

# Usage
```
npm install simple-mocha
```

```javascript
require('simple-mocha');
// add the above line to test file and run tests using
// node test-file.spec.js
```