javascript - Unit testing html label -


i have label populated through angular data binding:

<label class="my-heading">{{mybinding}}</label> 

returns:

<label class="my-heading">some value</label> 

how can write unit test confirm value within label i.e some value if mock binding?


Comments