Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
expect-proptypes
Advanced tools
This library extends expect to allow for assertions about object shapes, using React's PropTypes library or the standalone proptypes library on npm.
const {PropTypes} = require("react");
// Extend expect with this library.
const expect = require("expect");
const expectPropTypes = require("expect-proptypes")
expect.extend(expectPropTypes);
// Find some object you want to check the shape of
const obj = {
num: 1,
foo: "bar",
};
// `toHaveProps` does not allow additional props
expect(obj).toHaveProps({
num: PropTypes.number.isRequired,
foo: PropTypes.string.isRequired,
optional: PropTypes.bool,
});
// `toContainProps` allows additional propses
expect(obj).toContainProps({
num: PropTypes.number.isRequired,
});
If your proptypes have a property __name__
which is a string, this will be used in the error logs.
Consider using my library extended-proptypes, which adds many useful validators, such as dates,constants, constants and regex matching for strings and object keys.
FAQs
Allows expect to use
We found that expect-proptypes 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.