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