-
-
Notifications
You must be signed in to change notification settings - Fork 7
[Misc] Adding more tests #42
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
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
9b94a3e
Added Database checks to the onboarding flow
O-Bots d0f828f
Added compatibility page setup
O-Bots 862418e
Finished up the onboarding flow suite
O-Bots 02a5fc1
.
O-Bots 9630b20
Fix: Merge conflict
O-Bots b3a2eb0
.
O-Bots 5af84b6
Fix: Added fix for None discriptive error issue #36
O-Bots 43f6f9d
Linting and Prettier
O-Bots b0d5f63
Minor cleaning
MartinBraquet 2a4433f
Organizing helper func
O-Bots 2d34bb8
Added Google account to the Onboarding flow
O-Bots 0d9cd88
.
O-Bots 4ef1538
Added account cleanup for google accounts
O-Bots 6595eed
Started work on Sign-in tests
O-Bots cf951b5
Linting and Prettier
O-Bots c092182
Added checks to the deleteUser func to check if the accout exists
O-Bots e925bf8
Linting and Prettier
O-Bots c130e88
Added POM's for social and organisation page
O-Bots e350587
Formatting update, fixed homePage locator for signin
O-Bots 13b4c90
.
O-Bots 1330220
.
O-Bots f6f9253
.
O-Bots 2c48812
Merge branch 'main' into main
MartinBraquet a5087d8
Merge branch 'main' into main
MartinBraquet 1bd9f0c
Merge branch 'main' into main
MartinBraquet 5776360
Coderabbitai fix's
O-Bots a3aeb0f
Fix
MartinBraquet 6fd0749
Improve test utilities and stabilize onboarding flow tests
MartinBraquet 892305c
Merge branch 'main' into main
MartinBraquet 497f6cd
Changes requested
O-Bots b3458b9
Seperated deletion tests from onboarding
O-Bots fbabb15
Update `.coderabbit.yaml` with improved internationalization guidance…
MartinBraquet cac3cf6
Clean up `.vscode/settings.json` and add it to `.gitignore`
MartinBraquet 0bf19ee
Add Playwright E2E test guidelines to `.coderabbit.yaml`
MartinBraquet f39511c
Standardize and improve formatting in `TESTING.md` for better readabi…
MartinBraquet 6770969
Refactor onboarding flow tests and related utilities; improve formatt…
MartinBraquet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -102,3 +102,5 @@ test-results | |
| **/coverage | ||
|
|
||
| *my-release-key.keystore | ||
|
|
||
| .vscode/settings.json | ||
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Guard against empty usernames after normalization.
Line 96 can normalize symbol/whitespace-heavy input to an empty username, then insert invalid data.
🛡️ Proposed fix
🤖 Prompt for AI Agents