"verarbeitung/test/construct_graph_unittest.py" did not exist on "e89b7c0a6975924ff43d2e0b6540c9e6eb3e3cd5"
Select Git revision
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
analysis-panel.component.spec.ts 782 B
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import {AnalysisPanelComponent} from './analysis-panel.component';
import {HttpClientModule} from '@angular/common/http';
describe('AnalysisWindowComponent', () => {
let component: AnalysisPanelComponent;
let fixture: ComponentFixture<AnalysisPanelComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [AnalysisPanelComponent],
imports: [HttpClientModule],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AnalysisPanelComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});