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

fix: fix retry-progressive description #45

Merged
merged 1 commit into from
Nov 24, 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
12 changes: 6 additions & 6 deletions docs/plugins/testplane-retry-progressive.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# testplane-retry-progressive
# @testplane/retry-progressive

## Overview {#overview}

Use the `testplane-retry-progressive` plugin to additionally retry tests if the errors with which they fail correspond to a given set of patterns.
Use the `@testplane/retry-progressive` plugin to additionally retry tests if the errors with which they fail correspond to a given set of patterns.

What might it be needed for?

Expand All @@ -20,7 +20,7 @@ Tests can fail not only because of developer errors, races between scripts execu
## Install {#install}

```bash
npm install -D testplane-retry-progressive
npm install -D @testplane/retry-progressive
```

## Setup {#setup}
Expand All @@ -30,7 +30,7 @@ Add the plugin to the `plugins` section of the `testplane` config:
```javascript
module.exports = {
plugins: {
"testplane-retry-progressive": {
"@testplane/retry-progressive": {
enabled: true,
extraRetry: 7,
errorPatterns: [
Expand Down Expand Up @@ -99,6 +99,6 @@ testplane_retry_progressive_extra_retry=3 npx testplane

## Useful links {#useful_links}

- [Исходники плагина testplane-retry-progressive][testplane-retry-progressive]
- [@testplane/retry-progressive plugin sources][retry-progressive]

[testplane-retry-progressive]: https://github.com/gemini-testing/testplane-retry-progressive
[retry-progressive]: https://github.com/gemini-testing/testplane-retry-progressive
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# testplane-retry-progressive
# @testplane/retry-progressive

## Обзор {#overview}

Используйте плагин [testplane-retry-progressive][testplane-retry-progressive], чтобы дополнительно прогонять тесты, если ошибки, с которыми они упали соответствуют заданному набору шаблонов.
Используйте плагин `@testplane/retry-progressive`, чтобы дополнительно прогонять тесты, если ошибки, с которыми они упали соответствуют заданному набору шаблонов.

Для чего это может понадобиться?

Expand Down Expand Up @@ -35,7 +35,7 @@
## Установка {#install}

```bash
npm install -D testplane-retry-progressive
npm install -D @testplane/retry-progressive
```

## Настройка {#setup}
Expand All @@ -45,7 +45,7 @@ npm install -D testplane-retry-progressive
```javascript
module.exports = {
plugins: {
"testplane-retry-progressive": {
"@testplane/retry-progressive": {
enabled: true,
extraRetry: 7,
errorPatterns: [
Expand Down Expand Up @@ -114,6 +114,6 @@ testplane_retry_progressive_extra_retry=3 npx testplane ...

## Полезные ссылки {#useful_links}

- [Исходники плагина testplane-retry-progressive][testplane-retry-progressive]
- [Исходники плагина @testplane/retry-progressive][testplane-retry-progressive]

[testplane-retry-progressive]: https://github.com/gemini-testing/testplane-retry-progressive
Loading