Files
milestones/src/components/tree/tree.component.spec.ts
2024-09-08 22:11:51 -04:00

23 lines
574 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { TreeComponent } from './tree.component';
describe('TreeComponent', () => {
let component: TreeComponent;
let fixture: ComponentFixture<TreeComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [TreeComponent],
}).compileComponents();
fixture = TestBed.createComponent(TreeComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});