Skip to content

Commit 5d82ace

Browse files
authored
Merge pull request #1159 from Lombiq/issue/OSOE-1186-atata-htmlvalidation
OSOE-1186: Update Atata.HtmlValidation to 3.4.0 in Lombiq.UITestingToolbox
2 parents bdb42ea + 8f3fcf7 commit 5d82ace

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorPrivacyTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ await ExecuteTestAfterSetupAsync(
4141
configuration => configuration.HtmlValidationConfiguration.AssertHtmlValidationResultAsync =
4242
validationResult =>
4343
{
44-
// Error filtering due to https://github.com/OrchardCMS/OrchardCore/issues/15222,
45-
// can be removed once it is resolved.
44+
// Error filtering due to https://github.com/OrchardCMS/OrchardCore/issues/15222 and
45+
// https://github.com/OrchardCMS/OrchardCore/issues/18510. Can be removed once they are resolved.
4646
var errors = validationResult.GetParsedErrors()
47-
.Where(error => error.RuleId is not "prefer-native-element");
47+
.Where(error => error.RuleId is not "prefer-native-element" and not "aria-label-misuse");
4848
errors.ShouldBeEmpty(HtmlValidationResultExtensions.GetParsedErrorMessageString(errors));
4949
return Task.CompletedTask;
5050
});

0 commit comments

Comments
 (0)