Skip to content

Commit 620574b

Browse files
committed
fix typo
1 parent fb45fa3 commit 620574b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/playwright-testing/how-to-use-service-config-file.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default defineConfig(
9393
```
9494

9595
* **`runId`**:
96-
- **Description**: This setting allows you to set a unique ID for every test run to distinguish them in the service portal. Using the same runId for multiple test runs results in error.
96+
- **Description**: This setting allows you to set a unique ID for every test run to distinguish them in the service portal. Using the same runId for multiple test runs results in error. For sharding, keep this same across all shards.
9797
- **Example**:
9898
```typescript
9999
runId: new Date().toISOString()
@@ -203,7 +203,7 @@ Here's version of the `.runsettings` file with all the available options:
203203
<LoggerRunSettings>
204204
<Loggers>
205205
<!--microsoft playwright testing service logger for reporting -->
206-
<Logger friendlyName="microsoft-playwright-testing" enabled="True" />
206+
<Logger friendlyName="microsoft-playwright-testing" enabled="true" />
207207
<!--could enable any logger additionally -->
208208
<Logger friendlyName="trx" enabled="false" />
209209
</Loggers>
@@ -237,7 +237,7 @@ Here's version of the `.runsettings` file with all the available options:
237237
```
238238

239239
* **`RunId`**:
240-
- **Description**: This setting allows you to set a unique ID for every test run to distinguish them in the service portal. Using the same runId for multiple test runs results in error. If you don't set it, the service package will generate a unique ID every time you trigger a test run.
240+
- **Description**: This setting allows you to set a unique ID for every test run to distinguish them in the service portal. Using the same runId for multiple test runs results in error. If you don't set it, the service package will generate a unique ID every time you trigger a test run. For sharding, keep this same across all shards.
241241
- **Example**:
242242
```xml
243243
<Parameter name="RunId" value="sample-run-id1" />

0 commit comments

Comments
 (0)