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