-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fix/e2e create event #216
Merged
Merged
Fix/e2e create event #216
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
ec48d3e
fix: refactored e2e create event to remove network calls and mock the…
misterM125 c27d933
chore: removed unnecessary logs from e2e
misterM125 87075f7
fix: added timeouts to waiters in the e2e to avoid the CI running ind…
misterM125 7c47d0f
test: added a timeout to the overall test to avoid blocking the CI
misterM125 eeb0d87
ktfmt format
misterM125 d45ced4
test: added ignore tag to test if the end to end really blocks the CI
misterM125 8520316
test: removed part of the test to see what the buggy part is
misterM125 68cf8a6
ktfmt format
misterM125 561d55d
testing: testing another part of the end to end
misterM125 a771f23
testing: uncommented even more to test on the CI
misterM125 111a5e9
testing: removed 'waitForIdle' calls to see if it is what is blocking…
misterM125 1bd8f9a
testing: check if the problem comes from date parsing
misterM125 f191af7
fix: uncommented an action that should not have been commented
misterM125 897f5d4
ktfmt format
misterM125 183571c
testing: test if the CI properly navigates to the parkOverview screen
misterM125 6287d3f
testing: testing if end to end can navigate to add event screen
misterM125 eab602a
testing: testing click to add event screen
misterM125 1b6bc1e
Merge branch 'main' into fix/e2e-create-event
misterM125 f5a6046
fix: added a missing import
misterM125 118b9a4
testing: removed problematic assertIsDisplayed
misterM125 630638c
fix: remove blocking timeout
misterM125 3846783
testing: removed navigation to add event screen
misterM125 c55c06c
testing: use navTestInvokation to help with navigation
misterM125 658e90b
refactor: divided the end to end test into two parts to avoid the CI …
misterM125 beaf324
comment: removed unnecessary comment
misterM125 5434d16
testing: test if the first part of the end to end works
misterM125 f4031af
testing: test if the second part of the end to end works
misterM125 06614b7
Merge branch 'main' into fix/e2e-create-event
misterM125 01a2448
chore: removed useless imports
misterM125 6039e32
testing: removed ignore tag to test the full end to end
misterM125 15c70db
testing: test that other tests work well without end to end
misterM125 e3840fd
testing: added an AssertIsDisplayed
misterM125 9e618be
testing: commented a waiter in end to end
misterM125 91779fc
testing: uncommented waiters and removed redundant calls
misterM125 3810983
testing: add asserts
misterM125 ffbfeb1
testing: removed additionnal asserts to see if it works
misterM125 f2d5f27
refactor: removed lines that do not work in end to end test
misterM125 1217569
refactor: removed additionnal lines
misterM125 3635c4a
fix: removed unstable asserts from eventOverviewTest
misterM125 a00968c
chore: removed unneccessary logs
misterM125 36c91c7
Merge branch 'main' into fix/e2e-create-event
misterM125 65c4188
ktfmt format
misterM125 ddf454c
Merge branch 'main' into fix/e2e-create-event
misterM125 ab6b3ac
chore: added documentation to setPark and removed unused imports
misterM125 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
356 changes: 232 additions & 124 deletions
356
app/src/androidTest/java/com/android/streetworkapp/end2end/End2EndCreateEvent.kt
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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 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 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 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 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 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.
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.
Improvement: since
setCurrentPark
has a doc could you also add a small function description ?