-
Notifications
You must be signed in to change notification settings - Fork 2
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
docs: fix component testing example #10
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,25 +108,34 @@ it("should log document", async () => { | |
} | ||
``` | ||
|
||
Напишем более сложный тест с рендерингом react компонента: | ||
Напишем более сложный тест с рендерингом React-компонента. Для этого сначала напишем небольшой компонент: | ||
|
||
```javascript | ||
// src/tests/test.testplane.tsx | ||
// src/components/Component.tsx | ||
import { useState } from "react"; | ||
import { render } from "@testing-library/react"; | ||
|
||
// Простой компонент с тайтлом и кнопкой-счетчиком | ||
function Component() { | ||
const [count, setCount] = useState(0); | ||
|
||
return ( | ||
<div id="root"> | ||
<h1>Testplane Component Testing</h1> | ||
<h1>Testplane Component Testing!</h1> | ||
<button onClick={() => setCount(count => count + 1)}>count is {count}</button> | ||
</div> | ||
); | ||
} | ||
|
||
export default Component; | ||
``` | ||
|
||
И напишем сам тест, который будет тестировать наш React-компонент: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. А тут React с большой. Давай сделаем одинаково There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. сделал с большой везде |
||
|
||
```javascript | ||
// src/tests/test.testplane.tsx | ||
import { render } from "@testing-library/react"; | ||
import Component from "../components/Component"; | ||
|
||
it("should render react button", async ({ browser }) => { | ||
render(<Component />); // рендерим компонент на сгенеренной странице Vite | ||
|
||
|
@@ -149,17 +158,17 @@ it("should render react button", async ({ browser }) => { | |
|
||
### Какие дополнительные возможности поддерживаются? | ||
|
||
#### Hot Module Replacement (HMR) | ||
#### 1. Hot Module Replacement (HMR) | ||
|
||
В Vite поддерживается [HMR](https://vitejs.dev/guide/api-hmr.html). Это означает, что если изменить загруженный файл, то произойдет или ремаунт компонента, или полная перезагрузка страницы. В случае, если компонент описан в отдельном файле (т.е. не в одном файле с тестом), то будет выполнен ремаунт, но тест перезапущен не будет. А если изменить файл с тестом, то произойдет перезагрузка страницы, которая приведет к тому, что Testplane прервет выполнение текущего теста и запустит его заново. За счет такой возможности в Vite можно очень быстро разрабатывать компоненты и писать для них тесты. Рекомендуется использовать вместе с REPL-режимом. | ||
|
||
При изменении исходников компонента не происходит полного перезапуска теста (маунтится по новой только сам компонент). При этом, если изменить код теста, то происходит полный перезапуск. | ||
|
||
#### Использование инстанса browser и expect прямо в DevTools браузера | ||
#### 2. Использование инстанса browser и expect прямо в DevTools браузера | ||
|
||
В консоли браузера, в котором выполняется тест, доступны инстанс самого `browser` и инстанс `expect`. Это довольно удобно использовать при дебаге теста. | ||
|
||
#### Логи из консоли браузера в терминале | ||
#### 3. Логи из консоли браузера в терминале | ||
|
||
Вызов команд `log`, `info`, `warn`, `error`, `debug` и `table` на объекте `console` в браузере приводят к тому, что отображается информация не только в DevTools браузера, но также и в терминале, из которого был запущен Testplane. Т.е. можно вызвать `console.log` в тесте/компоненте и затем увидеть результат его выполнения в терминале. Это также довольно удобно при дебаге теста. | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Можно сразу выше написать -
export default function Component() {...}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тогда можно и сразу
export default function() {...}