Skip to content

Commit

Permalink
fix: fix retry-progressive description
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowusr committed Nov 24, 2024
1 parent 25030a5 commit 3e34cc0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
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

0 comments on commit 3e34cc0

Please sign in to comment.