From 0abb1c773bc66284efd152b57e3b13a58ad28255 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 21 Sep 2022 15:45:25 -0400 Subject: [PATCH] devops: fix `npm run dtest` (#17516) The `npx playwright docker test` command does not exist any more. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b44b25bc16..b41942675e 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ }, "license": "Apache-2.0", "scripts": { - "dtest": "cross-env PLAYWRIGHT_DOCKER=1 playwright docker test --config=tests/library/playwright.config.ts --grep '@smoke'", + "dtest": "cross-env PLAYWRIGHT_DOCKER=1 playwright docker --config=tests/library/playwright.config.ts --grep '@smoke'", "ctest": "playwright test --config=tests/library/playwright.config.ts --project=chromium", "ftest": "playwright test --config=tests/library/playwright.config.ts --project=firefox", "wtest": "playwright test --config=tests/library/playwright.config.ts --project=webkit",