import { ComponentFixture, TestBed } from '@angular/core/testing'; import { MainLayoutComponent } from './main-layout.component'; describe('MainLayoutComponent', () => { let component: MainLayoutComponent; let fixture: ComponentFixture; beforeEach(() => { TestBed.configureTestingModule({ imports: [MainLayoutComponent] }); fixture = TestBed.createComponent(MainLayoutComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });