You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`act`from`react-dom/test-utils`has been deprecated in favor of `act`from`react`.
7
+
`act`из`react-dom/test-utils`устарел и заменен на `act`из`react`.
8
8
9
-
Before:
9
+
До:
10
10
11
11
```js
12
12
import {act} from'react-dom/test-utils';
13
13
```
14
14
15
-
After:
15
+
После:
16
16
17
17
```js
18
18
import {act} from'react';
19
19
```
20
20
21
-
## Rest of ReactDOMTestUtils APIS {/*rest-of-reactdomtestutils-apis*/}
21
+
## Остальные API ReactDOMTestUtils {/*rest-of-reactdomtestutils-apis*/}
22
22
23
-
All APIs except`act` have been removed.
23
+
Все API, кроме`act`, были удалены.
24
24
25
-
The React Team recommends migrating your tests to [@testing-library/react](https://testing-library.com/docs/react-testing-library/intro/)for a modern and well supported testing experience.
25
+
Команда React рекомендует мигрировать ваши тесты на [@testing-library/react](https://testing-library.com/docs/react-testing-library/intro/)для современного и хорошо поддерживаемого опыта тестирования.
0 commit comments