Releases: keiya01/react-performance-testing
Releases · keiya01/react-performance-testing
[email protected]
- feat: support [email protected]
- feat: support
jsx-dev-runtime
[email protected]
performance-testing-cli
- fixed to reject when promise is error.
[email protected]
performance-testing-cli
- improved performance
- added
--concurrent
option
[email protected]
performance-testing-cli
- fixed error log
[email protected]
performance-testing-cli
performance-testing-cli
has been released 🎉- You can do test used
renderCount
for each file automatically.
1.2.3
react-performance-testing
- fixed
PerfTools
type. We can access the value as bellow.
from
const { renderCount } = perf<{ Component: unknown }>(React);
console.log(renderCount.current.Component?.value); // nullable
to
const { renderCount } = perf<{ Component: unknown }>(React);
console.log(renderCount.current.Component.value); // non nullable
1.2.2
1.2.1
1.2.0
[email protected]
jest-performance-testing
This lib has been published 🎉
You can use this lib with react-performance-testing.
Please see here