Custom Assertions For Chai
For our integration testing, we have made our own Chai's custom assertions. This is where we define, collect, and present them in a plugin form.
https://www.npmjs.com/package/mobify-chai-assertions
How To Use the Plugin
To use the plugin, simply call Chai's use()
function:
var chai = ;var customAssertions = ;chai;
New Assertion Methods
The plugin extends Chai by adding the following methods. Feel free to use either the assert
or expect
styles. They work with any of the chains listed in the Chai API documentation.
(Note: since Chai's API supports only the expect
style, we implemented these methods for the expect
style first and then the assert
style as a wrapper)
Elements
All of these assertions can take an optional msg
parameter to output a custom error message on test failure.
[ ] syntax denotes an optional parameter.
element([msg]) / elements([msg])
// Asserts that it is a Zepto/jQuery element.tobeanelement; // Takes an optional error message that is displayed on failure.// Default error message is "Must be a Zepto/jQuery object"tobeelements'failure: it is not a Zepto/jQuery object'; //Can be chained with .present and .count (see below)
present([num], [msg])
// Asserts that the length is at least (>=) than num.// Default is 1. // Can be used with all types of expressions.tobepresent; var items = 1 2 3;tobepresent;tobe;tobe; // Can be used in a chain:// Zepto/jQuery object has length at least 1tohaveelementspresent; // Can be negated// Length is 0tohaveelementsnotpresent;
count(num, [msg])
// Asserts that it has a specified lengthvar items = 1 2 3;tohave;tohave; // Asserts that a jQuery/Zepto object has a specified lengthvar $images = ;tohaveelements;
Deprecated elementsPresent
, elementsNotPresent
use elements.present
and elements.not.present
instead:
// Asserts that there exists such element on pageasserttohave // Asserts that there are 4 or more such elementsasserttohave // The negationasserttonothave
Deprecated elementsEqual
, elementsNotEqual
use elements.count
instead:
// Asserts that there are exactly 3 of such elementsasserttohave // The negationasserttonothave
Properties
Works with javascript objects.
properties
// Asserts that this object has the keys 'apple' and 'google'asserttohave
Items
Works with a collection of things.
items([msg])
// Asserts that this collection (e.g. an array) has at least 1 item in ittohaveitems;tohave;
Deprecated hasItems
use have.items
instead:
// Asserts that this collection (e.g. an array) has at least 1 item in itasserttonotbeempty