chore(docs): fix typo (#32372)

This commit is contained in:
Simon Knott 2024-08-29 23:16:29 +02:00 committed by GitHub
parent 74a8e59096
commit 0a40862bc8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -80,14 +80,14 @@ By default, Playwright will look up a closest tsconfig for each imported file by
```sh
# Playwright will choose tsconfig automatically
npx playwrigh test
npx playwright test
```
Alternatively, you can specify a single tsconfig file to use in the command line, and Playwright will use it for all imported files, not only test files.
```sh
# Pass a specific tsconfig
npx playwrigh test --tsconfig=tsconfig.test.json
npx playwright test --tsconfig=tsconfig.test.json
```
## Manually compile tests with TypeScript