diff --git a/docs/src/intro-csharp.md b/docs/src/intro-csharp.md index 560a691a17..18fd83addf 100644 --- a/docs/src/intro-csharp.md +++ b/docs/src/intro-csharp.md @@ -77,7 +77,7 @@ cd PlaywrightTests Install dependencies, build project and download necessary browsers. This is only done once per project. ```bash -dotnet add package Microsoft.Playwright +dotnet add package Microsoft.Playwright.NUnit dotnet build playwright install ``` diff --git a/docs/src/release-notes-js.md b/docs/src/release-notes-js.md index a86142ce26..7c6be2d8d6 100644 --- a/docs/src/release-notes-js.md +++ b/docs/src/release-notes-js.md @@ -37,7 +37,7 @@ test('basic test', async ({ page }) => { Running: ```bash -npx playwright test -c tests +npx playwright test ``` 👉 Read more in [testrunner documentation](./test-intro.md). diff --git a/docs/src/test-intro.md b/docs/src/test-intro.md index bed8d77b43..f1a8c4d2cc 100644 --- a/docs/src/test-intro.md +++ b/docs/src/test-intro.md @@ -52,25 +52,25 @@ test('basic test', async ({ page }) => { Now run your tests, assuming that test files are in the `tests` directory. ```bash -npx playwright test -c tests +npx playwright test ``` Playwright Test just ran a test using Chromium browser, in a headless manner. Let's tell it to use headed browser: ```bash -npx playwright test -c tests --headed +npx playwright test --headed ``` What about other browsers? Let's run the same test using Firefox: ```bash -npx playwright test -c tests --browser=firefox +npx playwright test --browser=firefox ``` And finally, on all three browsers: ```bash -npx playwright test -c tests --browser=all +npx playwright test --browser=all ``` Refer to [configuration](./test-configuration.md) section for configuring test runs in different modes with different browsers. @@ -283,7 +283,7 @@ drwxr-xr-x 3 user group 96 Jun 4 11:46 example.spec.ts-snapshots To update your golden files, you can use the `--update-snapshots` parameter. ```bash -npx playwright test -c tests --update-snapshots +npx playwright test --update-snapshots ``` @@ -293,61 +293,61 @@ Here are the most common options available in the [command line](./test-cli.md). - Run tests in headed browsers ```bash - npx playwright test -c tests --headed + npx playwright test --headed ``` - Run tests in a particular browser ```bash - npx playwright test -c tests --browser=webkit + npx playwright test --browser=webkit ``` - Run tests in all browsers ```bash - npx playwright test -c tests --browser=all + npx playwright test --browser=all ``` - Run a single test file ```bash - npx playwright test -c tests tests/todo-page.spec.ts + npx playwright test tests/todo-page.spec.ts ``` - Run a set of test files ```bash - npx playwright test -c tests tests/todo-page/ tests/landing-page/ + npx playwright test tests/todo-page/ tests/landing-page/ ``` - Run a test with specific title ```bash - npx playwright test -c tests -g "add a todo item" + npx playwright test -g "add a todo item" ``` - Run tests [in parallel](./test-parallel.md) - that's the default ```bash - npx playwright test -c tests + npx playwright test ``` - Disable [parallelization](./test-parallel.md) ```bash - npx playwright test -c tests --workers=1 + npx playwright test --workers=1 ``` - Choose a [reporter](./test-reporters.md) ```bash - npx playwright test -c tests --reporter=dot + npx playwright test --reporter=dot ``` - Run in debug mode with [Playwright Inspector](./inspector.md) ```bash # Linux/macOS - PWDEBUG=1 npx playwright test -c tests + PWDEBUG=1 npx playwright test # Windows with cmd.exe set PWDEBUG=1 - npx playwright test -c tests + npx playwright test # Windows with PowerShell $env:PWDEBUG=1 - npx playwright test -c tests + npx playwright test ``` ## Create a configuration file diff --git a/src/test/cli.ts b/src/test/cli.ts index 464148e35e..34ae4298e1 100644 --- a/src/test/cli.ts +++ b/src/test/cli.ts @@ -72,7 +72,7 @@ export function addTestCommand(program: commander.CommanderStatic) { console.log(''); console.log('Examples:'); console.log(' $ test my.spec.ts'); - console.log(' $ test -c tests/ --headed'); + console.log(' $ test --headed'); console.log(' $ test --browser=webkit'); }); }