
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
jest-sorted
Advanced tools
Inspired by chai sorted and jest-extended. This packages extends jest.expect with 2 custom matchers, `toBeSorted` and `toBeSortedBy`
Inspired by chai sorted and jest-extended. This packages extends jest.expect with 2 custom matchers, toBeSorted
and toBeSortedBy
Examples
expect([1, 2, 3]).toBeSorted();
expect([3, 2, 1]).toBeSorted({ descending: true });
expect([{ id: 1 }, { id: 2 }, { id: 3 }]).toBeSortedBy("id");
expect([{ count: "10" }, { count: "5" }]).toBeSortedBy("count", {
descending: true,
coerce: true,
});
With npm:
npm install --save-dev jest-sorted
With yarn:
yarn add -D jest-sorted
Add jest-sorted
to your Jest setupFilesAfterEnv
configuration. See for help
For example, add the following to your package.json
at the root level. See configuring jest for more info.
"jest": {
"setupFilesAfterEnv": ["jest-sorted"]
}
"jest": {
"setupTestFrameworkScriptFile": "jest-sorted"
}
If you are already using another test framework, like jest-chain, then you should create a test setup file and require
each of the frameworks you are using.
For example:
// ./testSetup.js
require("jest-sorted");
require("jest-chain");
require("any other test framework libraries you are using");
Then in your Jest config:
"jest": {
"setupTestFrameworkScriptFile": "./testSetup.js"
}
toBeSorted
Passes if the array is sorted in ascending order.
expect([1, 2, 3]).toBeSorted();
The following options can be passed as an object to alter the assertions behaviour
expect([3, 2, 1]).toBeSorted({ descending: true });
expect(["2", "12"]).toBeSorted({ coerce: true });
expect([{ id: 1 }, { id: 2 }, { id: 3 }]).toBeSorted({ key: "id" });
expect([{ id: 1 }, { id: 2 }, { id: 3 }]).toBeSorted({
key: "nothing",
strict: false,
});
toBeSortedBy
Passes if the array of objects is sorted in ascending order by the passed key. (Alias for toBeSorted({ key }))
expect([{ id: 1 }, { id: 2 }, { id: 3 }]).toBeSortedBy("id");
The following options can be passed as an object to alter the assertions behaviour
expect([{ id: 3 }, { id: 2 }, { id: 1 }]).toBeSortedBy("id", {
descending: true,
});
expect([{ count: "2" }, { count: "12" }]).toBeSortedBy("count", {
coerce: true,
});
expect([{ id: 3 }, { id: 2 }, { id: 1 }]).toBeSortedBy("nothing", {
strict: false,
});
FAQs
Inspired by chai sorted and jest-extended. This packages extends jest.expect with 2 custom matchers, `toBeSorted` and `toBeSortedBy`
The npm package jest-sorted receives a total of 14,070 weekly downloads. As such, jest-sorted popularity was classified as popular.
We found that jest-sorted 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.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.