feat: implement Playwright E2E test suite and CI automation (#372)#393
Open
Sam-Rytech wants to merge 11 commits intoLabsCrypt:mainfrom
Open
feat: implement Playwright E2E test suite and CI automation (#372)#393Sam-Rytech wants to merge 11 commits intoLabsCrypt:mainfrom
Sam-Rytech wants to merge 11 commits intoLabsCrypt:mainfrom
Conversation
Contributor
|
hey, main was failing CI from broken auth imports + frontend parse errors. fixed and pushed to main now. please rebase to pick up the fixes: git fetch upstream
git rebase upstream/main
git push --force-with-leaseif there's a conflict, resolve it locally and we'll review once CI is green. |
…ypt#372) - Initialize Playwright in frontend directory - Add stream-lifecycle.spec.ts covering wallet connection and stream CRUD - Update .github/workflows/ci.yml with e2e job and artifact uploading - Configure browser caching for CI optimization
…ypt#372) - Initialize Playwright in frontend directory - Add stream-lifecycle.spec.ts covering wallet connection and stream CRUD - Update .github/workflows/ci.yml with e2e job and artifact uploading - Configure browser caching for CI optimization
16450dc to
12eb5af
Compare
e575bf4 to
1a8c2e1
Compare
Author
|
@ogazboiz These fails have nothing to do with files I worked on |
Added steps to verify the disconnect button in the wallet chip dropdown.
Updated selector for wallet chip to target button element explicitly.
Contributor
|
hey, main CI is fully green now. there were several real TypeScript and test issues from #444's merge that have all been fixed. please rebase one more time: git fetch upstream
git rebase upstream/main
git push --force-with-leaseyour PR's diff should be much cleaner after this rebase since main now has the canonical versions of cancel.ts, sorobanService.ts, and the withdraw test. |
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
This PR introduces a robust End-to-End (E2E) testing framework using Playwright to ensure the stability of the FlowFi stream lifecycle. It automates the verification of core features from the user's perspective, including wallet integration and real-time stream management.
Changes
frontend/e2e/stream-lifecycle.spec.tsto test:.github/workflows/ci.ymlto include:e2e-testsjob that runs after the frontend build.Verification Results
Closes #372