All Projects → avrelian → jasmine-custom-message

avrelian / jasmine-custom-message

Licence: MIT license
custom failure message on any jasmine v1.3 assertion

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to jasmine-custom-message

jasmine2-custom-message
custom failure message on any jasmine v2 assertion
Stars: ✭ 27 (+80%)
Mutual labels:  jasmine, assertions, custom-message
Expect More
Curried Type Testing library, and Test Matchers for Jest
Stars: ✭ 124 (+726.67%)
Mutual labels:  jasmine, assertions
Sazerac
Data-driven unit testing for Jasmine, Mocha, and Jest
Stars: ✭ 322 (+2046.67%)
Mutual labels:  jasmine, assertions
json matcher
Library for simplifying data verification in functional tests for your JSON-based APIs
Stars: ✭ 24 (+60%)
Mutual labels:  assertions
chai
BDD / TDD assertion framework for node.js and the browser that can be paired with any testing framework.
Stars: ✭ 7,842 (+52180%)
Mutual labels:  assertions
j8spec
Library that allows tests written in Java to follow the BDD style introduced by RSpec and Jasmine.
Stars: ✭ 45 (+200%)
Mutual labels:  jasmine
Approvals.NodeJS
Approval Tests implementation in NodeJS
Stars: ✭ 79 (+426.67%)
Mutual labels:  jasmine
Jasmine
Simple JavaScript testing framework for browsers and node.js
Stars: ✭ 15,261 (+101640%)
Mutual labels:  jasmine
parse-server-test-runner
A tool for programmatically starting Parse Server
Stars: ✭ 18 (+20%)
Mutual labels:  jasmine
jsonassert
A Go test assertion library for verifying that two representations of JSON are semantically equal
Stars: ✭ 102 (+580%)
Mutual labels:  assertions
sublime-jasmine
Jasmine syntax, snippets and commands
Stars: ✭ 24 (+60%)
Mutual labels:  jasmine
observer-spy
This library makes RxJS Observables testing easy!
Stars: ✭ 310 (+1966.67%)
Mutual labels:  jasmine
jasmine-styleguide
Suggested best practices when writing Jasmine unit tests.
Stars: ✭ 65 (+333.33%)
Mutual labels:  jasmine
assert.sh
❗ Assertion lib for shell script users
Stars: ✭ 105 (+600%)
Mutual labels:  assertions
tau
A Micro (1k lines of code) Unit Test Framework for C/C++
Stars: ✭ 121 (+706.67%)
Mutual labels:  assertions
picolisp-unit
Unit Testing framework for PicoLisp
Stars: ✭ 22 (+46.67%)
Mutual labels:  assertions
superdeno
Super-agent driven library for testing Deno HTTP servers.
Stars: ✭ 119 (+693.33%)
Mutual labels:  assertions
zerocode-hello-world
Zerocode YAML and JSON based declarative steps hello world rest api testing example - soap, database
Stars: ✭ 18 (+20%)
Mutual labels:  assertions
kiwi
Fluent assertions for Kotlin
Stars: ✭ 17 (+13.33%)
Mutual labels:  assertions
apid
User focused API testing
Stars: ✭ 90 (+500%)
Mutual labels:  assertions

jasmine-custom-message

works with jasmine v1.3 (for work with jasmine v2 see jasmine2-custom-message)

This script makes it possible to use your own failure message on any jasmine assertion.

Example

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'
  });
});

Simple

All the magic happens in since 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 specially defined message function. That can produce a custom failure message. 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

describe('test', function() {
  it('should be ok', function() {
    since(function() {
      return {'tiger': 'kitty'};
    }).
    expect(3).toEqual(4); // => '{"tiger":"kitty"}'
  });
});

Unobtrusive

You can use jasmine as you did before, since jasmine-custom-message does not replace global jasmine expect function.

Example

describe('test', function() {
  it('should be ok', function() {
    expect(3).toEqual(4); // => ordinary jasmine message
  });
});

Powerful

You can use expected and actual value of the assertion in your custom message, by:

  • Passing a function, and using this.actual and this.expected
  • Passing a string, and using #{actual} and #{expected}

Example using a function

describe('test', function() {
  it('should be ok', function() {
    since(function(expected) {
      return this.actual + ' =/= ' + expected;
    }).
    expect(3).toEqual(4); // => '3 =/= 4'
  });
});

Example using a string

describe('test', function() {
  it('should be ok', function() {
    since('#{actual} =/= #{expected}').
    expect(3).toEqual(4); // => '3 =/= 4'
  });
});

Moreover, you can use a promise as an argument of expect or matcher functions. Promise is recognized by then method, so be careful if your non-promise object has this method.

Example (with a little help of protractor)

describe('test', function() {
  it('should be ok', function() {
    since(function(expected) {
      return this.actual + ' =/= ' + expected;
    }).
    expect(protractor.promise.fulfilled(3)).toEqual(protractor.promise.fulfilled(4)); // => '3 =/= 4'
  });
});

Front-end usage

  • install the bower package from github
bower install jasmine-custom-message --save-dev
  • include jasmine-custom-message.js into your HTML file next to jasmine script
<script src="PATH-TO/jasmine.js"></script>
<script src="PATH-TO/jasmine-custom-message.js"></script>   

Node.js usage

  • install the bower package
bower install jasmine-custom-message --save-dev

or npm package

npm install jasmine-custom-message --save-dev
  • require it in your spec file before your tests
require('jasmine-custom-message');

Change log

v0.8.0 - 2015.08.05 - Be careful of objects with then method, since they are treated as promises

  • fixed issue with custom failure messages on promised assertions
  • implemented "format string" functionality: #{actual} and #{expected}
  • configured protractor environment
  • corrected displaying of colors in tests running through protractor
  • updated specs

v0.7.0 - 2014.10.23

  • fixed issue with custom failure messages on inverse assertions
  • updated specs

v0.6.0 - 2014.01.18 - BROKEN COMPATIBILITY!

  • all the magic moved into newly introduced since function
  • restored automatic initiation of the script upon inclusion (browser) or require (Node.js)
  • cleaned specs

v0.5.0 - 2014.01.15

  • added support for nested message functions
  • dropped automatic wrapping of jasmine it and expect functions in browsers
  • added specs for Node.js
  • added specs for browsers
  • registered bower package
  • made disambiguation and readability improvements

v0.2.0 - 2014.01.10 - BROKEN COMPATIBILITY!

  • custom messages is supplied as the third argument for jasmine it function

v0.1.0 - 2014.01.08

  • the first functional version

Release plan

v0.9.0 - some new features (based on requests from Issues)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].