Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

app-header.spec.ts 549B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { AppHeader } from './app-header';
  3. describe('AppHeader', () => {
  4. let component: AppHeader;
  5. let fixture: ComponentFixture<AppHeader>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. imports: [AppHeader],
  9. }).compileComponents();
  10. fixture = TestBed.createComponent(AppHeader);
  11. component = fixture.componentInstance;
  12. await fixture.whenStable();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });