import { ComponentFixture, TestBed } from '@angular/core/testing'; import { LandingpageComponent } from './landingpage.component'; describe('LandingpageComponent', () => { let component: LandingpageComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ LandingpageComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(LandingpageComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });