Delete webServer, update projects description

This commit is contained in:
Yury Semikhatsky 2024-04-01 12:42:23 -07:00
parent c1393c72e8
commit 8c4d009eea
2 changed files with 3 additions and 12 deletions

View file

@ -74,7 +74,7 @@ See [`property: TestConfig.preserveOutput`].
* since: v1.10
- type: <[Array]<[FullProject]>>
List of resolved projects. See [`property: TestConfig.projects`].
List of resolved projects.
## property: FullConfig.quiet
* since: v1.10
@ -125,16 +125,6 @@ Playwright version.
## property: FullConfig.webServer
* since: v1.10
- type: <[null]|[Object]>
- `command` <[string]> Shell command to start. For example `npm run start`..
- `port` ?<[int]> The port that your http server is expected to appear on. It does wait until it accepts connections. Either `port` or `url` should be specified.
- `url` ?<[string]> The url on your http server that is expected to return a 2xx, 3xx, 400, 401, 402, or 403 status code when the server is ready to accept connections. Redirects (3xx status codes) are being followed and the new location is checked. Either `port` or `url` should be specified.
- `ignoreHTTPSErrors` ?<[boolean]> Whether to ignore HTTPS errors when fetching the `url`. Defaults to `false`.
- `timeout` ?<[int]> How long to wait for the process to start up and be available in milliseconds. Defaults to 60000.
- `reuseExistingServer` ?<[boolean]> If true, it will re-use an existing server on the `port` or `url` when available. If no server is running on that `port` or `url`, it will run the command to start a new server. If `false`, it will throw if an existing process is listening on the `port` or `url`. This should be commonly set to `!process.env.CI` to allow the local dev server when running tests locally.
- `stdout` ?<["pipe"|"ignore"]> If `"pipe"`, it will pipe the stdout of the command to the process stdout. If `"ignore"`, it will ignore the stdout of the command. Default to `"ignore"`.
- `stderr` ?<["pipe"|"ignore"]> Whether to pipe the stderr of the command to the process stderr or ignore it. Defaults to `"pipe"`.
- `cwd` ?<[string]> Current working directory of the spawned process, defaults to the directory of the configuration file.
- `env` ?<[Object]<[string], [string]>> Environment variables to set for the command, `process.env` by default.
See [`property: TestConfig.webServer`].

View file

@ -4,7 +4,8 @@
Runtime representation of the test project configuration that is passed
to [Reporter]. It exposes some of the resolved fields declared in
[TestProject].
[TestProject]. You can get [FullProject] instance from [`property: FullConfig.projects`]
or [`property: Suite.project`].
## property: FullProject.dependencies
* since: v1.31