🚀 Feature Request: Add --skipServe option to @nx/playwright:playwright executor #32112
kirstilynn
started this conversation in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
The current
@nx/playwright:playwright
executor automatically infers and runs thedevServerTarget
before executing Playwright tests. While helpful for local development, this behavior creates friction with remote testing scenarios where the application is already deployed and running — and the dev server should not be started.The
@nx/cypress:cypress
executor supports a--skipServe
option to address this exact problem. It would be great to have equivalent support in the Playwright executor.✅ Proposed Solution
Add support for a
--skipServe
option (or a correspondingskipServe
boolean in the executor schema). When provided, the executor should skip launching thedevServerTarget
, even if one is defined or inferred.Example usage:
Beta Was this translation helpful? Give feedback.
All reactions