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