mocha-directory

Allows you to organize your mocha test suites as directories

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
mocha-directory
002.3.07 years ago8 years agoMinified + gzip package size for mocha-directory in KB

Readme

mocha-directory
Allows you to organize your BDD mocha test suites as directories

Usage

File tree:
  • tests/
- index.js - Test Suite/
- test.js
tests/Test Suite/test.js:
it( 'should be a test', function() {
  // Test
} );

index.js
require( 'mocha-directory' )();

Command:
mocha tests/

Output:
Test Suite
    ✓ should be a test

  1 passing (9ms)