Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

translating reference-test-renderer.md #190

Merged
merged 6 commits into from
Nov 27, 2019
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions content/docs/reference-test-renderer.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,27 +113,27 @@ TestRenderer.create(element, options);
TestRenderer.act(callback);
```

Similar to the [`act()` helper from `react-dom/test-utils`](/docs/test-utils.html#act), `TestRenderer.act` prepares a component for assertions. Use this version of `act()` to wrap calls to `TestRenderer.create` and `testRenderer.update`.
[`react-dom/test-utils`의 `act()`](/docs/test-utils.html#act)와 비슷하게, `TestRenderer.act`는 검증을 위한 컴포넌트들을 준비합니다. `TestRenderer.create` 와 `trestRenderer.update`를 호출을 이 버전의 `act()`를 사용해서 감싸주세요.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TestRenderer.create 사이에 불필요한 공백이있습니다.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

자연스러운 문장을 위해 아래처럼 수정을 제안합니다.

TestRenderer.createtrestRenderer.update를 호출을 이 버전의 act()를 사용해서 감싸주세요.

TestRenderer.createtrestRenderer.update의 호출을 이 버전의 act()를 사용해서 감싸주세요.


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

// render the component
// 컴포넌트를 렌더링합니다.
let root;
act(() => {
root = create(<App value={1}/>)
});

// make assertions on root
// root를 검증합니다.
expect(root.toJSON()).toMatchSnapshot();

// update with some different props
// 몇몇의 다른 props를 업데이트합니다.
act(() => {
root = root.update(<App value={2}/>);
})

// make assertions on root
// root를 검증합니다.
expect(root.toJSON()).toMatchSnapshot();
```

Expand Down