Angular - Testing
Given this test snippet, what will
Assuming the button's text in template is
button.nativeElement.textContent output?const fixture = TestBed.createComponent(MyComponent);
fixture.detectChanges();
const button = fixture.debugElement.query(By.css('button'));
Assuming the button's text in template is
Click me.