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