Skip to content
Snippets Groups Projects
Select Git revision
  • 173b578868eeca0f0bab705c82702833c97fcb86
  • master default protected
2 results

add-event.component.spec.ts

Blame
  • add-event.component.spec.ts 643 B
    import { async, ComponentFixture, TestBed } from '@angular/core/testing';
    
    import { AddEventComponent } from './add-event.component';
    
    describe('AddEventComponent', () => {
      let component: AddEventComponent;
      let fixture: ComponentFixture<AddEventComponent>;
    
      beforeEach(async(() => {
        TestBed.configureTestingModule({
          declarations: [ AddEventComponent ]
        })
        .compileComponents();
      }));
    
      beforeEach(() => {
        fixture = TestBed.createComponent(AddEventComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    });