1
0
Files
yel-dspace-angular/src/app/shared/object-list/bitstream-list-item/bitstream-list-item.component.spec.ts
2023-05-09 16:41:40 +02:00

26 lines
705 B
TypeScript

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