![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
jasmine-incomplete-match
Advanced tools
Alternative to jasmine.any for when some object properties are known.
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
npm install jasmine-incomplete-match
.npm install jasmine-incomplete-match
// In spec files
require(jasmine-incomplete-match); // Nothing to assign, attaches to global jasmine object.
FAQs
Alternative to jasmine.any for when some object properties are known.
The npm package jasmine-incomplete-match receives a total of 0 weekly downloads. As such, jasmine-incomplete-match popularity was classified as not popular.
We found that jasmine-incomplete-match demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.