Skip to content

Commit

Permalink
fix: fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowusr committed Aug 7, 2024
1 parent c5dbad2 commit b7f25f3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const config: Config = {
},
{
label: "Plugins",
href: "/docs/v8/guides/how-to-write-your-own-plugin",
href: "/docs/v8/plugins/hermione-browser-version-changer",
},
],
},
Expand Down
12 changes: 12 additions & 0 deletions i18n/en/docusaurus-plugin-content-docs/current/config/browsers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ If the value is not set, a common timeout for all browsers will be used, which i
<tr><td>[retry](#retry)</td><td>Number</td><td>0</td><td>How many times you need to restart the failing test.</td></tr>
<tr><td>[shouldRetry](#should_retry)</td><td>Function</td><td>_see description_</td><td>A function that determines whether a retry is needed. By default, a function is set that returns _true_, if _retry > 0,_ and _false_, if _retry == 0_.</td></tr>
<tr><td>[strictTestsOrder](#strict_test_order)</td><td>Boolean</td><td>false</td><td>Guarantee a strict order of tests. If _true_, then the API function _testplane.readTests_ will always return the same result.</td></tr>
<tr><td>[passive](#passive)</td><td>Boolean</td><td>false</td><td>Makes the browser "passive". In passive browsers, tests do not run by default. _Available from [email protected]_.</td></tr>

</tbody>
</table>
Expand Down Expand Up @@ -289,6 +290,17 @@ The argument of this function is an object with the following fields:

This option enables a guarantee of a strict order of reading tests. By default: `false`.

### passive {#passive}

<Admonition type="warning">
Available from [email protected]. Doesn't work with deprecated plugin
[hermione-passive-browsers](https://github.com/gemini-testing/testplane-passive-browsers).
</Admonition>

Makes the browser "passive". In passive browsers, tests do not run by default. You may use the [testplane.also.in][testplane-also-in-helper] helper before a suite or test to run it in corresponding browser.

По умолчанию: `false`.

## Information about the test and its failure {#info_when_test_fails}

<table>
Expand Down

0 comments on commit b7f25f3

Please sign in to comment.