1.  
  2. it('should have ‹p› with "banner works!"', () => {
  3. const bannerElement: HTMLElement = fixture.nativeElement;
  4. const p = bannerElement.querySelector('p');
  5. expect(p.textContent).toEqual('banner works!');
  6. });
  7.