-
Notifications
You must be signed in to change notification settings - Fork 38
Add comprehensive end-to-end testing infrastructure with Playwright #749
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
Merged
Conversation
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
c429074
to
e6b052a
Compare
5152c8e
to
db7437b
Compare
2e29107
to
c0aa48f
Compare
9d665eb
to
f45071b
Compare
3cb66b9
to
858b4b6
Compare
2d8b954
to
6394852
Compare
6394852
to
0d0dc69
Compare
8df696c
to
d3fda54
Compare
1655356
to
8f07f5e
Compare
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Deploy to Staging
Set this label on pull requests to deploy code or infrastructure to the Staging environment
Enhancement
New feature or request
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.
Summary & Motivation
This change establishes a comprehensive end-to-end testing infrastructure using Playwright, providing a robust foundation for testing user workflows across all self-contained systems. The implementation includes authentication fixtures, test utilities, and organized test suites that ensure application functionality works correctly from a user's perspective.
Key features:
The infrastructure supports multiple browsers (Chromium, Firefox, WebKit) and provides detailed test reporting with screenshots and traces on failures. Tests are organized by functional areas and use descriptive step names for maintainability.
Downstream projects
Copy the Playwright test configuration files from Back Office to your self-contained system:
application/back-office/WebApp/tests/playwright.config.ts
toyour-self-contained-system/WebApp/tests/playwright.config.ts
application/back-office/WebApp/tests/tsconfig.json
toyour-self-contained-system/WebApp/tests/tsconfig.json
Update
your-self-contained-system/WebApp/rsbuild.config.ts
to exclude test files from the build:your-self-contained-system/WebApp/tsconfig.json
to exclude test files:your-self-contained-system/WebApp/tests/e2e/homepage.spec.ts
following the pattern from Back Office.Checklist