@tepez/joi-jasmine-helpers
v1.1.0
Published
Custom matchers for writing unit test in Jasmine for hapijs/joi schemas and extensions
Downloads
136
Readme
joi-jasmine-helpers
Custom matchers for writing unit test in Jasmine for hapijs/joi schemas and extensions
Install
npm install --save @tepez/joi-jasmine-helpers
Compatibility
| Version | Joi |
| ------- | ------------------------------------- |
| 1.x.x
| 17 joi
|
| 0.2.x
| 14 joi
|
Usage
describe('custom matchers', () => {
JoiJasmineHelpers.addMatchers();
it('toPassValidation', () => {
const schema = Joi.number().integer();
expect(schema).toPassValidation(100);
expect(schema).toPassValidation('100');
expect(schema).toPassValidation(100, 100);
expect(schema).toPassValidation('100', 100);
expect(schema).toPassValidation('100', 100, {
convert: true,
});
});
it('toFailValidation', () => {
const schema = Joi.number().integer();
expect(schema).toFailValidation('xxx');
expect(schema).toFailValidation('xxx', '"value" must be a number');
expect(schema).toFailValidation('xxx', /^"value" must be a number$/);
expect(schema).toFailValidation(10.5, /^"value" must be an integer$/);
expect(schema).toFailValidation('100', '"value" must be a number', {
convert: false,
});
});
});