-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix PHPUnit tests across all packages #55
Conversation
ce9b0e0
to
4f74d40
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good as far as I can see from skimming most files.
There's some checks that will need to be resolved, I think, though I have not consulted them all. Some suggestions for the PHPCS script will improve CI formatting for humans to read.
Repository-wide suggestions:
- The opening brace for the methods must go on its own line.
- protected function setUp(): void { + protected function setUp(): void + {
- Rename
tests/script
directory totests/scripts
.
…ulted to an empty string like in ViewableTrait.php
Co-authored-by: Chauncey McAskill <[email protected]>
Co-authored-by: Chauncey McAskill <[email protected]>
… attributes Co-authored-by: Chauncey McAskill <[email protected]>
Co-authored-by: Chauncey McAskill <[email protected]>
Co-authored-by: Chauncey McAskill <[email protected]>
Co-authored-by: Chauncey McAskill <[email protected]>
Co-authored-by: Chauncey McAskill <[email protected]>
Co-authored-by: Chauncey McAskill <[email protected]>
Co-authored-by: Chauncey McAskill <[email protected]>
d79de25
to
3b42ff0
Compare
🎉 This PR is included in version 3.1.4 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Fix PHPUnit tests across all packages with the option to run tests from the monorepo package (either all packages at once or individually) or run tests from each package if their dependencies are installed.
Changes :
Bug Fixes