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

impl-git.component.spec.ts

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