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