mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-12 15:50:57 +03:00
Added two new API calls, to update the server to a particular version and to get the updater status You can now update through the UI, and a status dialog displays after
26 lines
728 B
TypeScript
26 lines
728 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { UpdateProgressDialogComponent } from './update-progress-dialog.component';
|
|
|
|
describe('UpdateProgressDialogComponent', () => {
|
|
let component: UpdateProgressDialogComponent;
|
|
let fixture: ComponentFixture<UpdateProgressDialogComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ UpdateProgressDialogComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(UpdateProgressDialogComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|