Skip to content

Commit

Permalink
chore: fix path in composer:test call
Browse files Browse the repository at this point in the history
  • Loading branch information
tlayh committed Jul 9, 2024
1 parent 0c4cfb4 commit 180fa32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,26 +63,26 @@
"test": [
"[ -e .Build/bin/phpunit ] || composer update",
"mkdir -p reports && rm -rf reports/*",
"mkdir .Build/Web/config/system && cp Tests/Unit/Fixtures/settings.php .Build/Web/config/system/settings.php",
"mkdir -p .Build/Web/config/system && cp Tests/Unit/Fixtures/settings.php .Build/Web/config/system/settings.php",
"XDEBUG_MODE=coverage TYPO3_PATH_WEB=$PWD/.Build/Web .Build/bin/phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests-v10.xml Tests/Unit",
"XDEBUG_MODE=coverage TYPO3_PATH_WEB=$PWD/.Build/Web typo3DatabaseName=sequenzer typo3DatabaseHost=127.0.0.1 typo3DatabaseUsername=root typo3DatabasePassword=root .Build/bin/phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTests.xml Tests/Functional",
"rm .Build/Web/config/system/settings.php"
],
"test:unit": [
"[ -e .Build/bin/phpunit ] || composer update",
"mkdir -p .Build/Web/config/system/settings.php && cp Tests/Unit/Fixtures/settings.php .Build/Web/config/system/settings.php",
"mkdir -p .Build/Web/config/system && cp Tests/Unit/Fixtures/settings.php .Build/Web/config/system/settings.php",
"XDEBUG_MODE=coverage TYPO3_PATH_WEB=$PWD/.Build/Web .Build/bin/phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/Unit",
"rm .Build/Web/config/system/settings.php"
],
"test:unit-filter": [
"[ -e .Build/bin/phpunit ] || composer update",
"mkdir -p .Build/Web/config/system && cp Tests/Unit/Fixtures/settings.php .Build/Web/config/system/settings.php",
"XDEBUG_MODE=coverage TYPO3_PATH_ROOT=$PWD/.Build/Web .Build/bin/phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/Unit --filter Typo3ServiceTest",
"XDEBUG_MODE=coverage TYPO3_PATH_WEB=$PWD/.Build/Web .Build/bin/phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/Unit --filter Typo3ServiceTest",
"rm .Build/Web/config/system/settings.php"
],
"test:functional": [
"[ -e .Build/bin/phpunit ] || composer update",
"TYPO3_PATH_WEB=$PWD/.Build/Web typo3DatabaseName=sequenzer typo3DatabaseHost=127.0.0.1 typo3DatabaseUsername=root typo3DatabasePassword=root .Build/bin/phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTests.xml Tests/Functional"
"XDEBUG_MODE=coverage TYPO3_PATH_WEB=$PWD/.Build/Web typo3DatabaseName=sequenzer typo3DatabaseHost=127.0.0.1 typo3DatabaseUsername=root typo3DatabasePassword=root .Build/bin/phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTests.xml Tests/Functional"
],
"test:coverage": [
"[ -e .Build/bin/phpunit ] || composer update",
Expand Down

0 comments on commit 180fa32

Please sign in to comment.