custom failure message on any jasmine assertion
npm install jasmine2-custom-messagejasmine2-custom-message
======================
> works with jasmine v2 (for work with jasmine v1.3 see jasmine-custom-message)
This script makes it possible to use your own failure message on any jasmine assertion.
#### Example
``js
`
describe('the story', function() {
it('should finish ok', function() {
since('all cats are grey in the dark').
expect('tiger').toEqual('kitty'); // => 'all cats are grey in the dark'
});
});
since
Simple
All the magic happens in function. That returns an object with a property expect. That contains no more than a wrapped jasmine expect function. That returns jasmine expectation object with a wrapped addExpectationResult function. That can replace an ordinary jasmine failure message with a newly generated one. That is generating based on a custom message you have supplied to since function as the first argument. That can be a primitive (except null and undefined), a function, or any other object. That is it.
`
#### Example
js
`
describe('test', function() {
it('should be ok', function() {
since(function() {
return {'tiger': 'kitty'};
}).
expect(3).toEqual(4); // => '{"tiger":"kitty"}'
});
});
jasmine2-custom-message
Unobtrusive
You can use jasmine as you did before, since does not replace global jasmine expect function.
`
#### Example
js
`
describe('test', function() {
it('should be ok', function() {
expect(3).toEqual(4); // => ordinary jasmine message
});
});
this.actual
Powerful
You can use expected and actual values of the assertion in your custom message by:
* Passing a function, and using and this.expected
#{actual}
* Passing a string, and using and #{expected}
this.message
You can include the full original message from Jasmine by:
* Passing a function, and using
#{message}
* Passing a string, and using
`
#### Examples using a function
js
`
describe('test', function() {
it('should be ok', function() {
since(function() {
return this.actual + ' =/= ' + this.expected;
}).
expect(3).toEqual(4); // => '3 =/= 4'
});
});
`
js
`
describe('multiple tests that need some context added to the message', function() {
it('should be ok for all options', function() {
// passes the 1st loop iteration, fails the 2nd
[1, 2, 3, 4, 5].forEach(testOptionIndex => {
since(function() {
return 'for test option ' + testOptionIndex + ': ' + this.message;
}).
expect(testOptionIndex).toEqual(1); // => for test option 2: Expected 2 to equal 1.
});
});
});
`
#### Example using a string
js
`
describe('test', function() {
it('should be ok', function() {
since('#{actual} =/= #{expected}').
expect(3).toEqual(4); // => '3 =/= 4'
});
});
`
js
`
describe('multiple tests that need some context added to the message', function() {
it('should be ok for all options', function() {
// passes the 1st loop iteration, fails the 2nd
[1, 2, 3, 4, 5].forEach(testOptionIndex => {
since('for test option ' + testOptionIndex + ': #{message}').
expect(testOptionIndex).toEqual(1); // => for test option 2: Expected 2 to equal 1.
});
});
});
`
Front-end usage
* install the bower package from github
`
bower install jasmine2-custom-message --save-dev
jasmine2-custom-message.js
* include into your HTML file next to jasmine script
`html
`
`
Node.js usage
* install the bower package from github
`
$ bower install jasmine2-custom-message --save-dev
`
or
`
$ npm install jasmine2-custom-message --save-dev
`
* require it in your spec file before your tests
js
`
require('jasmine2-custom-message');
`
* or be explicit in any functional scope
js
`
var since = require('jasmine2-custom-message');
#{message}
Change log
v0.9.0 - 2018.03.01
* improved "format string" functionality: added for the original jasmine2 error message (kudos to Keith Zimmerman)
toHaveBeenCalled
* corrected output for matcher (kudos to Holger Jeromin)
protractor
* updated environment (kudos to Keith Zimmerman)
typescript
* added definitions (kudos to Holger Jeromin and Andrew N Marshall)
#{actual}
* updated specs
v0.8.0 - 2015.08.05
* implemented "format string" functionality: and #{expected}
protractor
* configured environment
protractor
* corrected displaying of colors in tests running through
v0.6.0
* updated specs
v0.7.0 - 2014.10.23
* fixed issue with custom failure messages on inverse assertions
* updated specs
- 2014.01.18 - BROKEN COMPATIBILITY!
since
* all the magic moved into newly introduced function
v0.5.0
* restored automatic initiation of the script upon inclusion (browser) or require (Node.js)
* cleaned specs
- 2014.01.15
it
* added support for nested message functions
* dropped automatic wrapping of jasmine and expect functions in browsers
v0.2.0
* added specs for Node.js
* added specs for browsers
* registered bower package
* made disambiguation and readability improvements
- 2014.01.10
it
* BROKEN COMPATIBILITY: custom messages is supplied as the third argument for jasmine function
v0.1.0
- 2014.01.08
v1.0.0` - some new features and updates (based on requests from Issues)
* the first functional version
Release plan