E2E: utility - cleanup all#7357
Open
phyllis-sy-wu wants to merge 1 commit intopsyw-0420-E2E-utility-cleanup-appsfrom
Open
E2E: utility - cleanup all#7357phyllis-sy-wu wants to merge 1 commit intopsyw-0420-E2E-utility-cleanup-appsfrom
phyllis-sy-wu wants to merge 1 commit intopsyw-0420-E2E-utility-cleanup-appsfrom
Conversation
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced Apr 21, 2026
af68c05 to
f5d0b8f
Compare
4919938 to
67d2e41
Compare
f5d0b8f to
c9b80d6
Compare
97411c9 to
7b3f2da
Compare
cca6a1f to
aa4b84a
Compare
7b3f2da to
c9fc623
Compare
aa4b84a to
24cc2d9
Compare
c9fc623 to
4e400ce
Compare
This was referenced Apr 22, 2026
24cc2d9 to
f8430c6
Compare
4e400ce to
91e2ac6
Compare
f8430c6 to
50e9c65
Compare
91e2ac6 to
3be5740
Compare
3be5740 to
96e0270
Compare
50e9c65 to
20863dd
Compare
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.

WHY are these changes introduced?
After splitting store and app cleanup into separate scripts, we need a single convenient command to run both at once.
WHAT is this pull request doing?
Adds convenience pnpm commands in the root
package.jsonthat runs both cleanup scripts.Logic
test:e2e-cleanupcleanup-stores.ts— find and delete leftover E2E dev stores (uninstalls apps first)cleanup-apps.ts— find and delete leftover E2E apps from the dev dashboard;instead of&&so app cleanup always runs even if store cleanup fails (they are independent operations)cleanup-appsIndividual scripts can also be run:
Other changes
tsxadded as e2e devDependency — previously used vianpx tsx(unpinned, slower first run). Now follows the establishedpnpm --filter e2e execpattern, matching howtest:e2eruns Playwright.packages/e2e/scripts/**to root workspaceignore(scripts belong to the e2e workspace, already inignoreWorkspaces, but knip picked them up via the rootpackage.jsonscript reference).How to test your changes?
Example:
pnpm test:e2e-cleanupcleanup-all.mov
Expand for example output