Skip to content

Commit

Permalink
Merge branch 'issue/LMBQ-377' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Piedone committed Aug 22, 2024
2 parents ec68639 + 0f4944f commit 37a3776
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ public class OrchardCoreUITestExecutorConfiguration
!logEntry.Message.ContainsOrdinalIgnoreCase("HTML Imports is deprecated") &&
// The 404 is because of how browsers automatically request /favicon.ico even if a favicon is declared to be
// under a different URL.
!logEntry.IsNotFoundLogEntry("/favicon.ico");
!logEntry.IsNotFoundLogEntry("/favicon.ico") &&
// Workaround for https://github.com/OrchardCMS/OrchardCore/issues/16606.
!(logEntry.Message.ContainsOrdinalIgnoreCase("/Settings/general") &&
logEntry.Message.ContainsOrdinalIgnoreCase("A em tag was parsed inside of a <select> which was not inserted into the document."));

/// <summary>
/// Gets the global events available during UI test execution.
Expand Down

0 comments on commit 37a3776

Please sign in to comment.