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

docs: proper default value for path option #540

Merged
merged 1 commit into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/en/html-reporter-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ module.exports = {
| **Parameter** | **Type** | **Default value** | **Description** |
| ------------- | -------- | :--------------------: | --------------- |
| [enabled](#enabled) | Boolean | true | Enable / disable the plugin. |
| [path](#path) | String | "hermione-report" | The path to the folder for saving html-report files. |
| [path](#path) | String | "html-report" | The path to the folder for saving html-report files. |
| [saveErrorDetails](#saveerrordetails) | Boolean | false | Save / do not save error details in json files. |
| [defaultView](#defaultview) | String | "all" | The test filtering mode when displayed, which will be set by default. |
| [diffMode](#diffmode) | String | "3-up" | The mode of viewing diffs, which will be set by default. |
Expand All @@ -125,7 +125,7 @@ Enables or disables the plugin.

### path

The path to the folder for saving html-report files. By default, the files will be saved to the `hermione-report` folder in the current working folder.
The path to the folder for saving html-report files. By default, the files will be saved to the `html-report` folder in the current working folder.

### saveErrorDetails

Expand Down
4 changes: 2 additions & 2 deletions docs/ru/html-reporter-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ module.exports = {
| **Параметр** | **Тип** | **По умолчанию** | **Описание** |
| ------------ | ------- | :-------------------: | ------------ |
| [enabled](#enabled) | Boolean | true | Включить / отключить плагин. |
| [path](#path) | String | "hermione-report" | Путь к папке для сохранения файлов html-отчета. |
| [path](#path) | String | "html-report" | Путь к папке для сохранения файлов html-отчета. |
| [saveErrorDetails](#saveerrordetails) | Boolean | false | Сохранять / не сохранять подробности ошибок в json-файлах. |
| [defaultView](#defaultview) | String | "all" | Режим фильтрации тестов при отображении, который будет установлен по умолчанию. |
| [diffMode](#diffmode) | String | "3-up" | Режим просмотра диффов, который будет установлен по умолчанию. |
Expand All @@ -125,7 +125,7 @@ module.exports = {

### path

Путь к папке для сохранения файлов html-отчета. По умолчанию файлы будут сохранены в папку `hermione-report` в текущей рабочей папке.
Путь к папке для сохранения файлов html-отчета. По умолчанию файлы будут сохранены в папку `html-report` в текущей рабочей папке.

### saveErrorDetails

Expand Down
Loading