Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,11 @@ public Task RequestsCanBeInterceptedAndCustomDataReturnedForDifferentHosts(strin

#if !ANDROID // Custom schemes are not supported on Android
#if !WINDOWS // TODO: There seems to be a bug with the implementation in the WASDK version of WebView2
#if IOS || MACCATALYST
[Theory(Skip = "Flaky due to external service dependency (echo.free.beeceptor.com). See https://github.com/dotnet/maui/issues/33927")]
#else
[Theory]
#endif
[InlineData("app://echoservice/", "RequestsWithCustomSchemeCanBeIntercepted")]
Comment on lines +148 to 153
Copy link

Copilot AI Feb 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The skip reason mentions an external dependency on echo.free.beeceptor.com, but this theory data is for app://echoservice/ (custom scheme). This makes the skip message potentially misleading when diagnosing failures. Consider updating the skip text to describe the actual reason this custom-scheme case is skipped on iOS/MacCatalyst (or use more generic wording like 'Flaky on iOS/MacCatalyst; tracked by ...' if the root cause is still under investigation).

Copilot uses AI. Check for mistakes.
#endif
#endif
Expand Down
Loading