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