blob: 5b4e4104946659ea31df2cafee6a4283878f3fb6 [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AddMemberComponent } from './add-member.component';
describe('AddMemberComponent', () => {
let component: AddMemberComponent;
let fixture: ComponentFixture<AddMemberComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AddMemberComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AddMemberComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});