0.0.2 • Published 12 years ago
jasmine-object-containing v0.0.2
jasmine-object-containing
A simple matcher that wraps jasmine.objectContaining
Usage
In Node:
var toContainObject = require('jasmine-object-containing').toContainObject;
beforeEach(function () {
this.addMatchers(toContainObject);
});In the browser:
beforeEach(function () {
this.addMatchers(toContainObject);
});Example
var obj = {
foo: function () {},
bar: 3,
baz: 10
};
expect(obj).toContainObject({
foo: jasmine.any(Function),
bar: 3
});0.0.2
12 years ago