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