Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

few-mocha

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

few-mocha

Enable support for generators in Mocha tests using few

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Few Mocha

Build status

Enable support for generators in Mocha tests using few.

Installation

npm install few-mocha --save-dev

Usage

Simply require the module and start writing generators in your tests.

describe("New user", function() {
  let business;
  let user;

  before(function*() {
    yield setup();
    business = yield Account.create("FooBar Inc");
    user = yield business.addUser("Mr. Boo");
  });

  it("should be the only customer", function*() {
    let count = yield User.count({ businessID: business.id });
    assert.equal(count, 1);
  });

  after(function*() {
    yield cleanUp();
  });
});

Node

Install the module using npm install few-mocha --save-dev. With mocha, you have multiple ways of requiring the module:

  • add --require few-mocha to your mocha.opts
  • add require('few-mocha') inside your main test file.

If you need to add generator support to a different mocha instance you can use it like this:

var mocha = require('mocha')
var fewMocha = require('few-mocha')

fewMocha(mocha)

How It Works

The module override the Runnable.prototype.run method of mocha to enable generators. In contrast to other npm packages, few-mocha extends mocha at runtime.

License

Licensed under Apache 2.0

Keywords

FAQs

Package last updated on 15 Feb 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc