Conversation
The E2E tests were failing because the /build directory didn't exist, causing requirements-check.php to fail and preventing the autoloader from loading any classes. Changes: - Add 'npm run build' step before starting WordPress environment - Simplify debugging output to essential verification steps - Remove verbose debugging now that root cause is identified 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
The plugin was working correctly all along - post types were registered. The issue was that pretty permalinks (/wp-json/...) don't work in wp-env Docker environment. Switched to query parameter format (?rest_route=/wp/v2/types/...) which works reliably. Changes: - Remove permalink configuration (unnecessary) - Use ?rest_route= format instead of /wp-json/ pretty URLs - This matches how @wordpress/e2e-test-utils authenticates 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
Preview changes with PlaygroundYou can preview the recent changes for PR#1173 with the following PHP versions: PHP Version 8.3
PHP Version 7.4
Download Made with 💙 from GatherPress & a little bit of WordPress Playground. Changes will not persist between sessions. |
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.
Description of the Change
Fixes E2E test failures in GitHub Actions CI.
Changes
npm run buildstep to generate required assets@wordpress/e2e-test-utils-playwrightWhy
The workflow was failing because:
/builddirectory caused requirements check to failTests now pass with proper plugin initialization.
Closes #
How to test the Change
Changelog Entry
Credits
Props @mauteri
Checklist: