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