Skip to content
Snippets Groups Projects
Select Git revision
  • f3510ac020e3120312031472c255bdd515558e2e
  • master default protected
2 results

DefinedMetricsSet.java

Blame
  • 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();
      });
    });