From 9fc9aeeb235ed16310287056545cc7790cdd760d Mon Sep 17 00:00:00 2001 From: "o.mingaleev" <22326647+olegmingaleev@users.noreply.github.com> Date: Wed, 16 Mar 2022 14:14:12 +0300 Subject: [PATCH] docs: fixed wrong types for WebServerConfig.cwd (#12817) Co-authored-by: Oleg Mingaleev --- docs/src/test-api/class-testconfig.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/test-api/class-testconfig.md b/docs/src/test-api/class-testconfig.md index 59a0a3ba38..479f08ce3a 100644 --- a/docs/src/test-api/class-testconfig.md +++ b/docs/src/test-api/class-testconfig.md @@ -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.