Warning, /firebird/firebird-ng/src/app/components/geometry-tree-window/geometry-tree-window.component.spec.ts is written in an unsupported language. File is not indexed.
0001 import { ComponentFixture, TestBed } from '@angular/core/testing';
0002
0003 import { GeometryTreeWindowComponent } from './geometry-tree-window.component';
0004 import {HttpClientModule} from "@angular/common/http";
0005
0006 describe('GeometryDialogComponent', () => {
0007 let component: GeometryTreeWindowComponent;
0008 let fixture: ComponentFixture<GeometryTreeWindowComponent>;
0009
0010 beforeEach(async () => {
0011 await TestBed.configureTestingModule({
0012 imports: [GeometryTreeWindowComponent, HttpClientModule]
0013 })
0014 .compileComponents();
0015
0016 fixture = TestBed.createComponent(GeometryTreeWindowComponent);
0017 component = fixture.componentInstance;
0018 fixture.detectChanges();
0019 });
0020
0021 it('should create', () => {
0022 expect(component).toBeTruthy();
0023 });
0024 });