Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
expect-even-more-jest
Advanced tools
It's expect-more-jest with even more stuff!
Because expect-more-jest has most of the things I need, but is missing a few, which I'm not entirely sure would be accepted upstream. This way, I present one package with all the tastiness of expect-more-jest as well as all the useful things that I like!
First, check out what expect-more-jest supplies Cool, huh?
Now, in addition to that, I've added:
describe(`expect-even-more-jest', () => {
it(`makes your tests and output easier to read as well!`, async () => {
// values
expect(SomeClass).toBeConstructor();
expect(new SomeClass()).toBeA(SomeClass);
// syntactic sugar: better flowing
expect(new ExcitedThing()).toBeAn(ExcitedThing);
// test that a value is not null or undefined
expect(someValue).toExist();
// tests matching properties on two objects
expect({ foo: 1, bar: 2 })
.toIntersectionEqual({ foo: 1, quux: 2 });
// mocks & spies
expect(spyOrMock).toHaveBeenCalledOnce();
expect(spyOrMock).toHaveBeenCalledOnceWith("hello", "world");
// promises
// - completed promises have resolved _or_ rejected
await expect(Promise.resolve()).toBeCompleted();
await expect(Promise.reject()).toBeCompleted();
// test that a promise resolves within a timeframe (defaults to 50 ms)
await expect(Promise.resolve()).toBeResolved("should have resolved", 5000);
// test that a promise rejects within a timeframe (defaults to 50 ms)
await expect(Promise.reject()).toBeRejected("should have rejected", 123);
expect(new Promise(() => {})).toBePromiseLike();
// file system
expect(pathToFile).toBeFile();
expect(pathToFolder).toBeFolder();
// collections
expect([1, 2, 3 ]).toBeEquivalentTo([ 2, 1, 3]);
expect({ foo: 1 }).toHaveKey("foo");
expect({ foo: 1, bar: 2 }).toHaveKeys("foo", "bar");
expect([ 1, 2, 3 ]).toAllMatch(i => i < 4);
// performs deep partial equality testing on elements of an array to find
// the search object, using jasmine.objectContaining (so you don't need
// to match _all_ properties!
expect(arrayOfObjects).toContainElementLike(search);
});
});
FAQs
expect-more-jest with even more stuff
We found that expect-even-more-jest demonstrated a healthy version release cadence and project activity because the last version was released less than 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.