Open
Conversation
mhsdesign
reviewed
Dec 18, 2025
Member
mhsdesign
left a comment
There was a problem hiding this comment.
Thanks for that!
I prefer not cd too much and use our test:behat-cli composer script which makes behat sane. Why sane because otherwise behat uses the ultra verbose logging format and not the dots and behat wont fail if a step definition does not exist which it should:) Wdyt?
| composer test:behavioral | ||
|
|
||
| # to run all tests of Neos.ContentRepository.BehavioralTests: | ||
| cd Neos.ContentRepository.BehavioralTests/Tests/Behavior |
Member
There was a problem hiding this comment.
Suggested change
| cd Neos.ContentRepository.BehavioralTests/Tests/Behavior | |
| composer test:behat-cli -- -c Neos.ContentRepository.BehavioralTests/Tests/Behavior/behat.yml.dist |
Comment on lines
+205
to
+206
| # to run only a single test: | ||
| ../../../../../bin/behat -c behat.yml.dist Features/01-RootNodeCreation/01-CreateRootNodeAggregateWithNode_ConstraintChecks.feature:72 |
Member
There was a problem hiding this comment.
Suggested change
| # to run only a single test: | |
| ../../../../../bin/behat -c behat.yml.dist Features/01-RootNodeCreation/01-CreateRootNodeAggregateWithNode_ConstraintChecks.feature:72 | |
| # to run only a single test (optionally with line number to specify the scenario): | |
| composer test:behat-cli -- -c Neos.ContentRepository.BehavioralTests/Tests/Behavior/behat.yml.dist Neos.ContentRepository.BehavioralTests/Tests/Behavior/Features/01-RootNodeCreation/01-CreateRootNodeAggregateWithNode_ConstraintChecks.feature:72 |
Comment on lines
+208
to
+214
| cd ../../../ | ||
|
|
||
|
|
||
| # to run all tests of Neos.Neos: | ||
| cd Neos.Neos/Tests/Behavior | ||
| ../../../../../bin/behat -c behat.yml.dist | ||
| cd ../../../ |
Member
There was a problem hiding this comment.
Suggested change
| cd ../../../ | |
| # to run all tests of Neos.Neos: | |
| cd Neos.Neos/Tests/Behavior | |
| ../../../../../bin/behat -c behat.yml.dist | |
| cd ../../../ | |
| # to run all tests of Neos.Neos: | |
| composer run test:behat-cli -- -c Neos.Neos/Tests/Behavior/behat.yml.dist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I recently tried the steps in CONTRIBUTING.md, and found a few bugs :)