CompUGE-Bench / src /app /components /body /tasks /tasks.component.spec.ts
Ahmad Shallouf
initialize
1bc149f
raw
history blame contribute delete
589 Bytes
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({
imports: [TasksComponent]
})
.compileComponents();
fixture = TestBed.createComponent(TasksComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});