Skip to content
Snippets Groups Projects
Select Git revision
  • e8ca8aa1d28f3b14f81b8a488ab2827aaafb53f9
  • main default protected
  • variant
3 results

gc.properties

Blame
  • Forked from LABOUREL Arnaud / Firefighter template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    buyer.component.spec.ts 552 B
    import { ComponentFixture, TestBed } from '@angular/core/testing';
    
    import { BuyerComponent } from './buyer.component';
    
    describe('BuyerComponent', () => {
      let component: BuyerComponent;
      let fixture: ComponentFixture<BuyerComponent>;
    
      beforeEach(() => {
        TestBed.configureTestingModule({
          declarations: [BuyerComponent]
        });
        fixture = TestBed.createComponent(BuyerComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    });