From 2c9e6e81a4c41095d2ddad8cdbd8b9db89c2ca8c Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Thu, 27 May 2021 10:15:37 -0700 Subject: [PATCH] docs(runner): start adding runner docs (2) (#6776) --- docs/src/test-runner-intro-js.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/src/test-runner-intro-js.md b/docs/src/test-runner-intro-js.md index c24cd1554a..445e263dce 100644 --- a/docs/src/test-runner-intro-js.md +++ b/docs/src/test-runner-intro-js.md @@ -15,7 +15,7 @@ There are many more exciting features, so read on! -Note that you can still wire Playwright to your existing JavaScript [test runner]('./test-runners-other-js.md). +Note that you can still wire Playwright to your existing JavaScript [test runner]('./test-runners-other.md). ## Installation @@ -163,19 +163,19 @@ Tests can be run in single or multiple browsers, in parallel or sequentially. ```sh # Run all tests across Chromium, Firefox and WebKit -$ npx folio --config=config.ts +npx folio --config=config.ts # Run tests on a single browser -$ npx folio --config=config.ts --project=chromium +npx folio --config=config.ts --project=chromium # Run tests sequentially -$ npx folio --config=config.ts --workers=1 +npx folio --config=config.ts --workers=1 # Retry failing tests -$ npx folio --config=config.ts --retries=2 +npx folio --config=config.ts --retries=2 # See all options -$ npx folio --help +npx folio --help ``` Refer to the [command line documentation][folio-cli] for all options.