mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-19 03:00:57 +03:00
24 lines
649 B
TypeScript
24 lines
649 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ArchiveViewerComponent } from './archive-viewer.component';
|
|
|
|
describe('ArchiveViewerComponent', () => {
|
|
let component: ArchiveViewerComponent;
|
|
let fixture: ComponentFixture<ArchiveViewerComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ ArchiveViewerComponent ]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(ArchiveViewerComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|