Skip to content

Commit

Permalink
[FOLLOWUP] Fix path of created tests directory (#1059)
Browse files Browse the repository at this point in the history
The document root for the tests is `.Build/Web`, not `.Build/public`.

Followup to #1058
  • Loading branch information
oliverklee authored Dec 12, 2023
1 parent e9716a3 commit ef35003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 {}';"
Expand Down

0 comments on commit ef35003

Please sign in to comment.