Skip to content

Commit 789098e

Browse files
committed
fixed typos
1 parent a922bcf commit 789098e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ ms.custom: playwright-testing-preview
88
# Use options available in configuration file with Microsoft Playwright Testing preview
99

1010
This article shows you how to use the options available in the `playwright.service.config.ts` file that was generated for you.
11-
If you do not 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)
11+
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)
1212

1313
> [!IMPORTANT]
1414
> Microsoft Playwright Testing is currently in preview. For legal terms that apply to Azure features that are in beta, in preview, or otherwise not yet released into general availability, see the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
1515
16-
Here is version of the `playwright.service.config.ts` file with all the available options:
16+
Here's version of the `playwright.service.config.ts` file with all the available options:
1717

1818
```typescript
1919
import { getServiceConfig, ServiceOS } from "@azure/microsoft-playwright-testing";
@@ -52,8 +52,8 @@ export default defineConfig(
5252
* **`serviceAuthType`**:
5353
- **Description**: This setting allows you to choose the authentication method you want to use for your test run.
5454
- **Available Options**:
55-
- `TOKEN` to use access tokens. You need to enable authtication using access tokens if you want to use this option, see [manage authentication](./how-to-manage-authentication.md).
56-
- `ENTRA` to use Enrta ID for authentication. It is the default mode.
55+
- `TOKEN` to use access tokens. You need to enable authentication using access tokens if you want to use this option, see [manage authentication](./how-to-manage-authentication.md).
56+
- `ENTRA` to use Enrta ID for authentication. It's the default mode.
5757
- **Default Value**: `ENTRA_ID`
5858
- **Example**:
5959
```typescript
@@ -87,7 +87,7 @@ export default defineConfig(
8787
```
8888

8989
* **`useCloudHostedBrowsers`**
90-
- **Description**: This setting allows you to choose whether to use cloud-hosted browsers or the browsers on your client machine to run your Playwright tests. If you disable this option, your tests run on the browsers of your client machine instead of cloud-hosted browsers, and you do not incur any charges.
90+
- **Description**: This setting allows you to choose whether to use cloud-hosted browsers or the browsers on your client machine to run your Playwright tests. If you disable this option, your tests run on the browsers of your client machine instead of cloud-hosted browsers, and you don't incur any charges.
9191
- **Default Value**: true
9292
- **Example**:
9393
```typescript
@@ -109,7 +109,7 @@ export default defineConfig(
109109
```
110110

111111
* **`reporter`**
112-
- **Description**: The `playwright.service.config.ts` file extends the playwright config file of your setup. This option overrides the existing reporters and sets Microsoft Playwright Testing reporter. You can add or modify this list to include the reporters that you want to use. You are billed for Microsoft Playwright Testing reporting if you add `@azure/microsoft-playwright-testing/reporter`.
112+
- **Description**: The `playwright.service.config.ts` file extends the playwright config file of your setup. This option overrides the existing reporters and sets Microsoft Playwright Testing reporter. You can add or modify this list to include the reporters that you want to use. You're billed for Microsoft Playwright Testing reporting if you add `@azure/microsoft-playwright-testing/reporter`.
113113
- **Default Value**: ["@azure/microsoft-playwright-testing/reporter"]
114114
- **Example**:
115115
```typescript

0 commit comments

Comments
 (0)