Skip to content
Snippets Groups Projects
Select Git revision
  • 07cb0efaef92269873ba5d97a1fd1ee0c90384fd
  • main default protected
2 results

demo.final.md

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