fix(showcase): point test-page fixtures at static.shiplight.ai - #3
Merged
Conversation
The /testing/* pages these five tests use were served by the old monots frontend at app.shiplight.ai. That host now serves the product app, so every one of these URLs returns 404 and the tests fail for anyone who clones this repo. They are now hosted at static.shiplight.ai, off the product origin. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
Problem
Five showcase tests point
base_urlathttps://app.shiplight.aiand load pages under/testing/*. Those pages were served by the old monots frontend.app.shiplight.ainow serves the product app, so every one of these URLs returns 404 and the tests fail for anyone who clones this repo:01-self-healing/testing/dynamic/dynamic-elements.html03-auto-dismiss-modal/testing/modal/index.html04-pure-vision/testing/interactions/drag-and-drop.html13-file-upload/testing/files/upload.html19-file-download/testing/files/download.htmlFix
The fixtures are now hosted at
static.shiplight.ai, deliberately off the product origin — several of them are fake login forms and session-expired screens, which should not share an origin with the real app. Only thebase_urlline changes; every path is identical.17-non-standard-clickableand18-multi-step-self-healusehttp://localhost:3000against thecicd-exampleapp and are unaffected.Depends on ShiplightAI/shipyard#779, which stands up the host. Merge after that one.
🤖 Generated with Claude Code