Skip to content

Commit

Permalink
fix: remove todos
Browse files Browse the repository at this point in the history
  • Loading branch information
scottsauber committed Nov 13, 2023
1 parent d2812b6 commit 7bc7fa8
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ public void Test002()
.CssSelector.ShouldBe(expectedLabelText);
}

// TODO: fix this for refreshable
[Theory(DisplayName = "Should return back element associated with label when label when is wrapped around element")]
[MemberData(nameof(HtmlElementsThatCanHaveALabel))]
public void Test003(string htmlElementWithLabel)
Expand All @@ -61,7 +60,6 @@ public void Test004()
.CssSelector.ShouldBe(expectedLabelText);
}

// TODO: fix this for refreshable
[Theory(DisplayName = "Should return back element associated with label when element uses aria-label")]
[MemberData(nameof(HtmlElementsThatCanHaveALabel))]
public void Test005(string htmlElementWithLabel)
Expand All @@ -75,7 +73,6 @@ public void Test005(string htmlElementWithLabel)
input.Id.ShouldBe($"{htmlElementWithLabel}-with-aria-label");
}

// TODO: fix this for refreshable
[Theory(DisplayName = "Should return back element associated with another element when that other element uses aria-labelledby")]
[MemberData(nameof(HtmlElementsThatCanHaveALabel))]
public void Test006(string htmlElementWithLabel)
Expand Down

0 comments on commit 7bc7fa8

Please sign in to comment.