25 lines
662 B
TypeScript
25 lines
662 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { TaskOverviewComponent } from './task-overview.component';
|
|
|
|
describe('TaskOverviewComponent', () => {
|
|
let component: TaskOverviewComponent;
|
|
let fixture: ComponentFixture<TaskOverviewComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [TaskOverviewComponent]
|
|
}).compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(TaskOverviewComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|