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