Skip to content

Releases: keiya01/react-performance-testing

react-performance-testing@2.0.0

15 Aug 12:09
0d7653e
Compare
Choose a tag to compare
  • feat: support React@17.x
  • feat: support jsx-dev-runtime

performance-testing-cli@v1.1.1

30 Mar 15:10
Compare
Choose a tag to compare

performance-testing-cli

  • fixed to reject when promise is error.

performance-testing-cli@1.1.0

22 Sep 02:44
Compare
Choose a tag to compare

performance-testing-cli

  • improved performance
  • added --concurrent option

performance-testing-cli@1.0.1

12 Sep 11:46
Compare
Choose a tag to compare

performance-testing-cli

  • fixed error log

performance-testing-cli@1.0.0

12 Sep 11:46
Compare
Choose a tag to compare

performance-testing-cli

  • performance-testing-cli has been released 🎉
  • You can do test used renderCount for each file automatically.

1.2.3

27 Aug 11:14
Compare
Choose a tag to compare

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

26 Aug 04:16
Compare
Choose a tag to compare

react-performance-testing

  • improved error logs
  • fixed readme

1.2.1

24 Aug 05:35
Compare
Choose a tag to compare

react-performance-testing

  • fixed readme
  • Changed renderTime.mount to experimental phase

1.2.0

21 Aug 02:35
Compare
Choose a tag to compare

react-performance-testing

New Feature

  • wait method has been added
  • renderCount and renderTime can measure value in asynchronous

Breaking Changes

  • You need to wrap returned value from perf method with wait method

jest-performance-testing

  • fixed readme

jest-performance-testing@1.0.0

21 Aug 08:25
Compare
Choose a tag to compare

jest-performance-testing

This lib has been published 🎉
You can use this lib with react-performance-testing.
Please see here