Skip to content

Commit

Permalink
fix: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sipayRT committed Nov 27, 2024
1 parent 84c0d79 commit 06d8e9b
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 21 deletions.
30 changes: 21 additions & 9 deletions docs/reference/testplane-events.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -272,14 +272,26 @@ Or as follows: see the [example](#new_worker_process_usage) from the description
The test runner has a `registerWorkers` method which registers the plugin code for parallel execution in the Testplane workers. The method takes the following parameters:

<table>
<thead>
<tr><td>**Parameter**</td><td>**Type**</td><td>**Description**</td></tr>
</thead>
<tbody>
<tr><td>workerFilepath</td><td>String</td><td>Absolute path to the worker.</td></tr>
<tr><td>exportedMethods</td><td>String[]</td><td>List of exported methods.</td></tr>

</tbody>
<thead>
<tr>
<td>**Parameter**</td>
<td>**Type**</td>
<td>**Description**</td>
</tr>
</thead>
<tbody>
<tr>
<td>workerFilepath</td>
<td>String</td>
<td>Absolute path to the worker.</td>
</tr>
<tr>
<td>exportedMethods</td>
<td>String[]</td>
<td>List of exported methods.</td>
</tr>

</tbody>
</table>

It returns an object which contains asynchronous functions with names from exported methods.
Expand Down Expand Up @@ -427,7 +439,7 @@ const parseConfig = require('./config');
module.exports = (testplane, opts) => {
const pluginConfig = parseConfig(opts);

if (!pluginConfig.enabled</td></tr> testplane.isWorker()) {
if (!pluginConfig.enabled || testplane.isWorker()) {
// either the plugin is disabled, or we are in the worker context – exit
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,14 +273,25 @@ module.exports = (testplane, opts) => {
У раннера тестов есть метод `registerWorkers`, который регистрирует код плагина для параллельного выполнения в воркерах testplane. Метод принимает следующие параметры:

<table>
<thead>
<tr><td>**Параметр**</td><td>**Тип**</td><td>**Описание**</td></tr>
</thead>
<tbody>
<tr><td>workerFilepath</td><td>String</td><td>Абсолютный путь к воркеру.</td></tr>
<tr><td>exportedMethods</td><td>String[]</td><td>Список экспортируемых методов.</td></tr>

</tbody>
<thead>
<tr>
<td>>**Параметр**</td>
<td>**Тип**</td>
<td>**Описание**</td>
</tr>
</thead>
<tbody>
<tr>
<td>>workerFilepath</td>
<td>String</td>
<td>Абсолютный путь к воркеру.</td>
</tr>
<tr>
<td>>exportedMethods</td>
<td>String[]</td>
<td>Список экспортируемых методов.</td>
</tr>
</tbody>
</table>

При этом возвращает объект, который содержит асинхронные функции с именами из экспортированных методов.
Expand Down Expand Up @@ -365,7 +376,7 @@ const parseConfig = require('./config');
module.exports = (testplane, opts) => {
const pluginConfig = parseConfig(opts);

if (!pluginConfig.enabled <tr><td>testplane.isWorker()) {
if (!pluginConfig.enabled || testplane.isWorker()) {
// или плагин отключен, или мы находимся в контексте воркера – уходим
return;
}
Expand Down Expand Up @@ -428,7 +439,7 @@ const parseConfig = require('./config');
module.exports = (testplane, opts) => {
const pluginConfig = parseConfig(opts);

if (!pluginConfig.enabled</td></tr> testplane.isWorker()) {
if (!pluginConfig.enabled || testplane.isWorker()) {
// или плагин отключен, или мы находимся в контексте воркера – уходим
return;
}
Expand Down Expand Up @@ -1501,7 +1512,7 @@ const parseConfig = require('./config');
module.exports = (testplane, opts) => {
const pluginConfig = parseConfig(opts);

if (!pluginConfig.enabled <tr><td>testplane.isWorker()) {
if (!pluginConfig.enabled || testplane.isWorker()) {
// или плагин отключен, или мы находимся в контексте воркера – уходим
return;
}
Expand All @@ -1520,7 +1531,7 @@ module.exports = (testplane, opts) => {
testplane.on(testplane.events.INIT, () => {
// dev-сервер может быть запущен как через указание опции --dev-server
// при запуске testplane, так и в настройках плагина
const devServer = program && program.devServer</td></tr> pluginConfig.devServer;
const devServer = (program && program.devServer) || pluginConfig.devServer;

if (!devServer) {
// если dev-сервер запускать не нужно – уходим
Expand Down

0 comments on commit 06d8e9b

Please sign in to comment.