Skip to content
Snippets Groups Projects
Select Git revision
  • c488009963f9f491e72a83bfbdab6104cd0a4e9b
  • development default
  • production protected
  • bugfixing
  • polishing
  • update
  • security_patch
7 results

tool-panel.component.spec.ts

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    tool-panel.component.spec.ts 648 B
    import { ComponentFixture, TestBed } from '@angular/core/testing';
    
    import { ToolPanelComponent } from './tool-panel.component';
    
    describe('ToolPanelComponent', () => {
      let component: ToolPanelComponent;
      let fixture: ComponentFixture<ToolPanelComponent>;
    
      beforeEach(async () => {
        await TestBed.configureTestingModule({
          declarations: [ ToolPanelComponent ]
        })
        .compileComponents();
      });
    
      beforeEach(() => {
        fixture = TestBed.createComponent(ToolPanelComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    });