From e7ac7eb50cd61e48d110e92059cad8bcce0faac7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=A9=EC=84=B1=EB=B2=94=20=28Bang=20Seongbeom=29?= Date: Mon, 2 Aug 2021 18:04:13 +0900 Subject: [PATCH] docs(test-runner): remove npx in npm scripts (#7931) --- docs/src/intro-js.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/intro-js.md b/docs/src/intro-js.md index 4bb54b5967..d4e6a7da05 100644 --- a/docs/src/intro-js.md +++ b/docs/src/intro-js.md @@ -464,7 +464,7 @@ Configure NPM script to run tests. Playwright Test will automatically pick up `p ```json { "scripts": { - "test": "npx playwright test" + "test": "playwright test" } } ``` @@ -474,7 +474,7 @@ If you put your configuration file in a different place, pass it with `--config` ```json { "scripts": { - "test": "npx playwright test --config=tests/example.config.js" + "test": "playwright test --config=tests/example.config.js" } } ```