From ef350037c222d834d0466b4806c8f6d21ac382bb Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 12 Dec 2023 16:35:47 +0100 Subject: [PATCH] [FOLLOWUP] Fix path of created tests directory (#1059) The document root for the tests is `.Build/Web`, not `.Build/public`. Followup to #1058 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index e382730..edecd4e 100644 --- a/composer.json +++ b/composer.json @@ -159,7 +159,7 @@ "@ci:tests:unit", "@ci:tests:functional" ], - "ci:tests:create-directories": "mkdir -p .Build/public/typo3temp/var/tests", + "ci:tests:create-directories": "mkdir -p .Build/Web/typo3temp/var/tests", "ci:tests:functional": [ "@ci:tests:create-directories", "find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo \"Running functional test suite {}\"; .Build/bin/phpunit -c ./Tests/Functional/FunctionalTests.xml {}';"