UIAngular/Client/src/app/components/contact-page/contact-page.component.spec.ts

26 lines
668 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ContactPageComponent } from './contact-page.component';
describe('ContactPageComponent', () => {
let component: ContactPageComponent;
let fixture: ComponentFixture<ContactPageComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ContactPageComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ContactPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});