I'm working on an Angular component that includes a form structured like this:
<form>
<label for="Name">Click me</label>
<input type="text" id="Name" name="Name" />
<label for="Name2">Click me 2</label>
<input type="text" id="Name2" name="Name" />
</form>
My task is to create a unit test that verifies whether the input with id=Name has a label with the text "Click Name". How should I go about implementing this unit test using Angular, Jasmine, and Karma?