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