New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

jasmine-incomplete-match

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jasmine-incomplete-match

Alternative to jasmine.any for when some object properties are known.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

jasmine-incomplete-match Build Status

Alternative to jasmine.any for when some object properties are known.

For example, you may have a complex object such as:

{
  a: [1,2,3],
  b: 'hello',
  c: {
    x: [1,2,3],
    y: [4,5,6],
    z: [7,8,9]
  }
}

If that object was passed into a method that you were spying on for the purposes of testing, jasmine allows you to do the following:

expect(foo).toHaveBeenCalledWith(jasmine.any(Object));

However, you may need to test the specific values of certain properties on the object. It would be redundant to have to include all of the other properties in each of your tests, and this would also increase the cost of maintenance.

jasmine.incompleteMatcher allows you to do this for any primitive, array, or object property as shown:

expect(foo).toHaveBeenCalledWith(jasmine.any(Object));

A real world example might be:

describe('sendFunnelData', function(){
    var data;

    beforeEach(function(){
        data = {
            params: { campaign_type: 'facebook-flyin', action: 'impression' },
            table: 'campaigns'
        };

        spyOn($,'ajax');
    });

    it('should send correct data', function(){
        BR.Analytics.sendFunnelData(data);

        expect($.ajax).toHaveBeenCalledWith(jasmine.any(String), jasmine.incompleteMatch({
            data: { tag_permalink: 'nfl', country: 'test_country' },
            dataType: 'jsonp'
        }));
    });
});

##Setup

Browser

  • Download the repo or npm install jasmine-incomplete-match.
  • Include lib/incompleteMatch.js after including jasmine.

Node

npm install jasmine-incomplete-match

// In spec files
require(jasmine-incomplete-match); // Nothing to assign, attaches to global jasmine object.

Keywords

FAQs

Package last updated on 05 Sep 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc