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

25 lines
585 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', () => {
2020-04-21 10:50:26 +02:00
let component: HomeComponent;
let fixture: ComponentFixture<HomeComponent>;
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [HomeComponent],
}).compileComponents();
}));
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(() => {
fixture = TestBed.createComponent(HomeComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
it('should create', () => {
expect(component).toBeTruthy();
});
2019-08-09 15:14:23 +02:00
});