landing-header.component.spec.ts 609 B

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