mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-09 02:41:29 +03:00
26 lines
728 B
TypeScript
26 lines
728 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { SubscriptionFileCardComponent } from './subscription-file-card.component';
|
|
|
|
describe('SubscriptionFileCardComponent', () => {
|
|
let component: SubscriptionFileCardComponent;
|
|
let fixture: ComponentFixture<SubscriptionFileCardComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ SubscriptionFileCardComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(SubscriptionFileCardComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|