From 7a16e1e2383fc6def6c0712d3e8b629928a17385 Mon Sep 17 00:00:00 2001 From: Debbie O'Brien Date: Fri, 5 Aug 2022 21:37:56 +0200 Subject: [PATCH] docs: what you will learn running tests (#16315) --- docs/src/running-tests-js.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/src/running-tests-js.md b/docs/src/running-tests-js.md index 4133123ad0..9a591b0d82 100644 --- a/docs/src/running-tests-js.md +++ b/docs/src/running-tests-js.md @@ -5,6 +5,12 @@ title: "Running Tests" You can run a single test, a set of tests or all tests. Tests can be run on one browser or multiple browsers. By default tests are run in a headless manner meaning no browser window will be opened while running the tests and results will be seen in the terminal. +**You will learn** + +- [How to run tests from the command line](/running-tests.md#command-line) +- [How to debug tests](/running-tests.md#debugging-tests) +- [How to open the HTML test reporter](/running-tests.md#test-reports) + :::note For a better debugging experience check out the [VS Code Extension](./getting-started-vscode.md) for Playwright where you can run tests, add breakpoints and debug your tests right from the VS Code editor. :::