0.1.2 • Published 10 years ago
chai-param v0.1.2
chai-param
Use chai to validate your method's parameters
Quick start
Install it on your project
npm install chai-paramRequire and load it
var chai = require('chai'),
chaiParam = require('chai-param'),
expect = chai.expect,
should = chai.should(),
param = chaiParam.param;
chai.use(chaiParam);Happy method guarding :)
function register(user, pass) {
// using should
param(user, 'user', 'UsersCtl.register').should.not.be.empty;
// or using expect
expect(user).param('user', 'UsersCtl.register')
.to.have.length.above(5)
.and.below(16);
}Config
Chai-param can be configured by setting the values in chaiParam.config object properties. E.g:
var chaiParam = require('chai-param');
chaiParam.config.improveMessages = true;improveMessages
Type:
BooleanDefault:true
Controls whether or not chai-param should replace chai's messages by more descriptive ones. So, for example, instead of getting
UserCtl.register: expected 'asdf' to have a length above 5 but got 4You'll get...

showCaller on error messages
Type:
BooleanDefault:true
This option is only available for node and requires improveMessages to be true.
chaiParam.config.showCaller = true;disableColors
Type:
BooleanDefault:false
Disables message coloring. Boring, but useful for tests.