Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
jest-performance-testing
Advanced tools
You can get benefit by using this lib with react-performance-testing. This lib is created to improve DX for react-performance-test users. You can write test quickly and easy.
npm:
npm install --save-dev jest-performance-testing
yarn:
yarn add --dev jest-performance-testing
Note: If you are using TypeScript, we are recommending to import this lib in local file like *.test.ts | *.spec.ts
. This is because, we have expanded jest types, so global types are not recognized by some editors if you import this lib in setup file. If you want to import this lib in setup file, please see here testing-library/jest-dom#123 (comment).
toBeMounted()
This matcher is to check if component is mounted.
expect(renderCount.current.Component).toBeMounted();
You can use renderTime
as bellow.
expect(renderTime.current.Component).toBeMounted();
toBeMountedWithin(mountedTime: number)
This matcher is to check if mounted time is less than expected time.
expect(renderTime.current.Component).toBeMountedWithin(16); // ms
toBeUpdatedWithin(updatedTime: number[])
This matcher is to check if some updated time are less than expected time.
expect(renderTime.current.Component).toBeUpdatedWithin([
10, // first render
15, // second render
20, // third render
]);
If you have same render time, you can write as bellow.
// All items are 16ms
expect(renderTime.current.Component).toBeUpdatedWithin(16);
toBeRenderedTimes(renderedTimes: number)
This matcher is to check if number of renders are equality.
expect(renderCount.current.Component).toBeRenderedTimes(1);
FAQs
You can use test matchers for react-performance-testing
We found that jest-performance-testing 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.