nested-describe

1.0.2 • Public • Published

nested-describe

Helper to create nested describe statements for test suites

Install

npm install nested-describe --save-dev

Usage

testfile.js

 
var nestedDescribe = require('nested-describe');
 
nestedDescribe('api.routes.helpers', function() {
 
  it('should carry out a helper function', function () {
 
  });
 
});
 
 
nestedDescribe(['api', 'routes', 'helpers'], function() {
 
  it('should carry out a helper function', function () {
 
  });
 
});
 

will yield

 
  api
    routes
      helpers
        ✓ should carry out a helper function (1ms)
 
  1 passing (1ms)
 

Dependencies (3)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i nested-describe

    Weekly Downloads

    8

    Version

    1.0.2

    License

    MIT

    Last publish

    Collaborators

    • l12s