0.0.2 • Published 10 years ago

jasmine-object-containing v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

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