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