mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-06-07 12:54:35 +00:00
Added ability to schedule tasks based on timestamp Fixed mismatched types between frontend and openapi yaml Simplified imports for several backend components
26 lines
619 B
TypeScript
26 lines
619 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { TasksComponent } from './tasks.component';
|
|
|
|
describe('TasksComponent', () => {
|
|
let component: TasksComponent;
|
|
let fixture: ComponentFixture<TasksComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ TasksComponent ]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(TasksComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|