funky-framadate-front/src/app/pages/home/home.component.spec.ts

26 lines
614 B
TypeScript
Raw Normal View History

2019-08-09 15:14:23 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { HomeComponent } from './home.component';
2019-08-09 15:14:23 +02:00
describe('HomeComponent', () => {
let component: HomeComponent;
let fixture: ComponentFixture<HomeComponent>;
2019-08-09 15:14:23 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ HomeComponent ]
2019-08-09 15:14:23 +02:00
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(HomeComponent);
2019-08-09 15:14:23 +02:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});