0.0.2 • Published 8 years ago

mocha-describes v0.0.2

Weekly downloads
8
License
MIT
Repository
github
Last release
8 years ago

mocha-describes

This is a module meant to be run with Mocha, and depends on a global describe being available.

Example Usage:

var describes = require("mocha-describes");

describes("app", "is", "awesome", function() {
  it("Should do the thing");
});

The former code should have the same effect as this code:

describe("app", function() {
  describe("is", function() {
    describe("awesome", function() {
      it("Should do the thing");
    });
  });
});