• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import { ComponentFixture, TestBed } from '@angular/core/testing';
2
3import { GraphComponent } from './graph.component';
4
5describe('GraphComponent', () => {
6  let component: GraphComponent;
7  let fixture: ComponentFixture<GraphComponent>;
8
9  beforeEach(async () => {
10    await TestBed.configureTestingModule({
11      imports: [GraphComponent],
12    }).compileComponents();
13
14    fixture = TestBed.createComponent(GraphComponent);
15    component = fixture.componentInstance;
16    fixture.detectChanges();
17  });
18
19  it('should create', () => {
20    expect(component).toBeTruthy();
21  });
22});
23