import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ServerLocationSampleData } from '@creedinteractive/onguard-models'; import { ServerLocationCardComponent } from './server-location-card.component'; import { ServerLocationCardModule } from './server-location-card.module'; describe('ServerLocationCardComponent', () => { let component: ServerLocationCardComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [ServerLocationCardModule], }).compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(ServerLocationCardComponent); component = fixture.componentInstance; component.data = ServerLocationSampleData[1]; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });