From e2022d061a3b443afc9fdb85e7d7b5fd16ca99e5 Mon Sep 17 00:00:00 2001 From: Ben Auer <136239531+BenAuerDev@users.noreply.github.com> Date: Tue, 5 Nov 2024 16:57:32 +0100 Subject: [PATCH] add missing equals sign to bash command --- docs/06-concepts/18-testing/01-get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/06-concepts/18-testing/01-get-started.md b/docs/06-concepts/18-testing/01-get-started.md index 75eea6a..583c315 100644 --- a/docs/06-concepts/18-testing/01-get-started.md +++ b/docs/06-concepts/18-testing/01-get-started.md @@ -196,7 +196,7 @@ That's it, the project setup should be ready to start using the test tools! Go to the server directory and generate the test tools: ```bash - serverpod generate --experimental-features testTools + serverpod generate --experimental-features=testTools ``` The default location for the generated file is `test/integration/test_tools/serverpod_test_tools.dart`. The folder name `test/integration` is chosen to differentiate from unit tests (see the [best practises section](best-practises#unit-and-integration-tests) for more information on this).