From 8d2f65f278f0c8b9d6353bfe21f0bf9f293f6d20 Mon Sep 17 00:00:00 2001 From: Alexandra Borovova Date: Thu, 19 Jan 2023 13:57:34 +0100 Subject: [PATCH] chore: add npm command to run tests in Firefox with BiDi (#9545) **What kind of change does this PR introduce?** Update in package.json. **Summary** Firefox team would like to start running puppeteer with BiDi on CI, so it would be nice for us to have npm shortcut for it. **Does this PR introduce a breaking change?** no --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 9f7147a2..4f333e57 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,7 @@ "test:chrome:headless-chrome": "npm test -- --test-suite chrome-new-headless", "test:chrome:headless": "npm test -- --test-suite chrome-headless", "test:chrome": "run-s test:chrome:*", + "test:firefox:bidi": "npm test -- --test-suite firefox-bidi", "test:firefox:headful": "npm test -- --test-suite firefox-headful", "test:firefox:headless": "npm test -- --test-suite firefox-headless", "test:firefox": "run-s test:firefox:*",