1.0.2 • Published 9 years ago

pruno-mocha v1.0.2

Weekly downloads
4
License
ISC
Repository
github
Last release
9 years ago

pruno-mocha

A mocha test runner with support for should and coffeescript.

Usage

"use strict";

var pruno = require('pruno');

pruno.plugins(function(mix) {
  mix
    .configure({ dir: __dirname + '/config' })
    .mocha({
      search: ['./src/**/*.js', './tests/**/*.js', './tests/**/*.coffee'],
      coffee: false,
      use: ['should']
    });
});