Skip to content

Commit

Permalink
Update reference-test-renderer.md
Browse files Browse the repository at this point in the history
  • Loading branch information
toy9910 authored Nov 21, 2019
1 parent 4063d79 commit 9f88ecd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/docs/reference-test-renderer.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ TestRenderer.create(element, options);
TestRenderer.act(callback);
```

[`react-dom/test-utils` `act()`](/docs/test-utils.html#act)와 비슷하게, `TestRenderer.act`실행을 위한 컴포넌트들을 준비합니다. `TestRenderer.create``trestRenderer.update`를 호출을 보호하기 위해 이 버전의 `act()`사용하십시오.
[`react-dom/test-utils` `act()`](/docs/test-utils.html#act)와 비슷하게, `TestRenderer.act`검증을 위한 컴포넌트들을 준비합니다. `TestRenderer.create``trestRenderer.update`를 호출을 이 버전의 `act()`사용해서 감싸주세요.

```javascript
import {create, act} from 'react-test-renderer';
import App from './app.js'; // The component being tested

// 컴포넌트를 랜더링합니다.
// 컴포넌트를 렌더링합니다.
let root;
act(() => {
root = create(<App value={1}/>)
Expand All @@ -128,7 +128,7 @@ act(() => {
// root를 검증합니다.
expect(root.toJSON()).toMatchSnapshot();

// 몇몇의 다른 프로퍼티즈들을 업데이트합니다.
// 몇몇의 다른 props를 업데이트합니다.
act(() => {
root = root.update(<App value={2}/>);
})
Expand Down

0 comments on commit 9f88ecd

Please sign in to comment.