-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
[Testing] Enabling more UI Tests by removing platform specific condition - 5 #27564
Open
LogishaSelvarajSF4525
wants to merge
16
commits into
dotnet:main
Choose a base branch
from
anandhan-rajagopal:logi-enableuitests9
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+23
−35
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
c698bed
migrate the condition related issues
LogishaSelvarajSF4525 935d5ec
Merge branch 'main' into logi-enableuitests9
LogishaSelvarajSF4525 4307b57
Merge branch 'dotnet:main' into logi-enableuitests9
LogishaSelvarajSF4525 bb38fa7
update the changes
LogishaSelvarajSF4525 22b5f7e
revert the snap
LogishaSelvarajSF4525 a6a923e
modified changes
LogishaSelvarajSF4525 8baff57
Merge branch 'dotnet:main' into logi-enableuitests9
LogishaSelvarajSF4525 f5375e9
added snapshot
LogishaSelvarajSF4525 afa346f
Merge branch 'dotnet:main' into logi-enableuitests9
LogishaSelvarajSF4525 857f652
added the snapshot.
LogishaSelvarajSF4525 96e2002
Merge branch 'dotnet:main' into logi-enableuitests9
LogishaSelvarajSF4525 59bc98a
Merge branch 'dotnet:main' into logi-enableuitests9
LogishaSelvarajSF4525 cf1cc8d
Merge branch 'dotnet:main' into logi-enableuitests9
LogishaSelvarajSF4525 5f4ffa4
replace snapshot
LogishaSelvarajSF4525 fac1a56
Merge branch 'dotnet:main' into logi-enableuitests9
LogishaSelvarajSF4525 52f91f9
Merge branch 'dotnet:main' into logi-enableuitests9
LogishaSelvarajSF4525 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
Binary file added
BIN
+10.5 KB
...ases.Android.Tests/snapshots/android/CustomStyleEditorFromPlatformViewWorks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-23.7 KB
...tCases.Android.Tests/snapshots/android/UpdatedBackButtonTitleForEmptyString.png
Binary file not shown.
Binary file added
BIN
+101 KB
....Android.Tests/snapshots/android/VerifyEntryClearButtonVisibilitySetToNever.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+108 KB
...d.Tests/snapshots/android/VerifyEntryClearButtonVisibilitySetToWhileEditing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Binary file added
BIN
+9.77 KB
...ases.Mac.Tests/snapshots/mac/BackButtonBehaviorIsVisibleWorksWithCustomIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+75.1 KB
...s/tests/TestCases.Mac.Tests/snapshots/mac/CollectionViewShouldHaveScrollBar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.36 KB
...ts/TestCases.Mac.Tests/snapshots/mac/CustomStyleEditorFromPlatformViewWorks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+28.1 KB
...ontrols/tests/TestCases.Mac.Tests/snapshots/mac/GradientAndShadowShouldWork.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
2 changes: 1 addition & 1 deletion
2
src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue24670.cs
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
2 changes: 1 addition & 1 deletion
2
src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue25468.cs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#if ANDROID || IOS | ||
using NUnit.Framework; | ||
using NUnit.Framework; | ||
using UITest.Appium; | ||
using UITest.Core; | ||
|
||
|
@@ -21,5 +20,4 @@ public void GradientAndShadowShouldWork() | |
VerifyScreenshot(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Pending snapshot on Windows. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have committed this snapshot in the latest changes. |
||
} | ||
} | ||
} | ||
#endif | ||
} |
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
Binary file added
BIN
+16.7 KB
...s/tests/TestCases.WinUI.Tests/snapshots/windows/GradientAndShadowShouldWork.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+23.3 KB
...ts/TestCases.iOS.Tests/snapshots/ios/CustomStyleEditorFromPlatformViewWorks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-24.8 KB
...ests/TestCases.iOS.Tests/snapshots/ios/UpdatedBackButtonTitleForEmptyString.png
Binary file not shown.
Binary file added
BIN
+104 KB
...estCases.iOS.Tests/snapshots/ios/VerifyEntryClearButtonVisibilitySetToNever.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+108 KB
...s.iOS.Tests/snapshots/ios/VerifyEntryClearButtonVisibilitySetToWhileEditing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
Pending snapshot on macOS.
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.
I have committed this snapshot in the latest changes.