docs: fixed wrong types for WebServerConfig.cwd (#12817)

Co-authored-by: Oleg Mingaleev <oleg.m@profi.io>
This commit is contained in:
o.mingaleev 2022-03-16 14:14:12 +03:00 committed by GitHub
parent 964eeba0dc
commit 9fc9aeeb23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -617,7 +617,7 @@ export default config;
- `url` <[string]> URL to wait on for the web server (exactly one of `port` or `url` is required)
- `timeout` <[int]> Maximum duration to wait on until the web server is ready
- `reuseExistingServer` <[boolean]> If true, reuse the existing server if it is already running, otherwise it will fail
- `cwd` <[boolean]> Working directory to run the command in
- `cwd` <[string]> Working directory to run the command in
- `env` <[Object]<[string], [string]>> Environment variables to set for the command
Launch a development web server during the tests.