contact-admin.component.spec.ts 669 Bytes
Newer Older
1 2
import { ComponentFixture, TestBed } from '@angular/core/testing';

3
import { ContactAdminComponent } from './contact-admin.component';
4

5 6 7
describe('ContactAdminComponent', () => {
  let component: ContactAdminComponent;
  let fixture: ComponentFixture<ContactAdminComponent>;
8 9 10

  beforeEach(async () => {
    await TestBed.configureTestingModule({
11
      declarations: [ ContactAdminComponent ]
12 13 14 15 16
    })
    .compileComponents();
  });

  beforeEach(() => {
17
    fixture = TestBed.createComponent(ContactAdminComponent);
18 19 20 21 22 23 24 25
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});