Skip to content

Commit 7136780

Browse files
committed
fix errors
1 parent eb10a7a commit 7136780

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ ms.custom: playwright-testing-preview
77
zone_pivot_group_filename: playwright-testing/ZonePivotGroups.json
88
zone_pivot_groups: microsoft-playwright-testing
99
---
10+
11+
# Use options available in service package with Microsoft Playwright Testing preview
12+
1013
::: zone pivot="playwright-test-runner"
11-
# Use options available in configuration file with Microsoft Playwright Testing preview
1214

1315
This article shows you how to use the options available in the `playwright.service.config.ts` file that was generated for you.
1416
If you don't have this file in your code, follow the QuickStart guide, see [Quickstart: Run end-to-end tests at scale with Microsoft Playwright Testing Preview](./quickstart-run-end-to-end-tests.md)
@@ -17,8 +19,6 @@ If you don't have this file in your code, follow the QuickStart guide, see [Quic
1719

1820
::: zone pivot="nunit-test-runner"
1921

20-
# Use options available in configuration file with Microsoft Playwright Testing preview
21-
2222
This article shows you how to use the options available in the `.runsettings` file.
2323
If you don't have this file in your code, follow the QuickStart guide, see [Quickstart: Run end-to-end tests at scale with Microsoft Playwright Testing Preview](./quickstart-run-end-to-end-tests.md)
2424

@@ -262,7 +262,7 @@ Here's version of the `.runsettings` file with all the available options:
262262
- **Default Value**: true
263263
- **Example**:
264264
```xml
265-
<Logger friendlyName="microsoft-playwright-testing" enabled="True" />
265+
<Logger friendlyName="microsoft-playwright-testing" enabled="True" />
266266
```
267267
* **`enableGitHubSummary`**:
268268
- **Description**: This setting allows you to configure the Microsoft Playwright Testing service reporter. You can choose whether to include the test run summary in the GitHub summary when running in GitHub Actions.

articles/playwright-testing/quickstart-run-end-to-end-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ To run your Playwright test suite in Visual Studio Code with Microsoft Playwrigh
307307
Run Playwright tests against browsers managed by the service and see the results in the unified portal using the configuration you created above.
308308
309309
```bash
310-
dotnet test --logger "microsoft-playwright-testing"
310+
dotnet test --logger "microsoft-playwright-testing" -- NUnit.NumberOfTestWorkers=20
311311
```
312312
After the test run completes, you can view the test status in the terminal.
313313

0 commit comments

Comments
 (0)