cavallium-website/src/app/pages/home/home.component.spec.ts

26 lines
614 B
TypeScript
Raw Normal View History

2019-04-12 20:20:38 +02:00
import { async, ComponentFixture, TestBed } from "@angular/core/testing";
2019-04-12 00:16:56 +02:00
2019-04-12 20:20:38 +02:00
import { HomeComponent } from "./home.component";
2019-04-12 00:16:56 +02:00
2019-04-12 20:20:38 +02:00
describe("HomeComponent", () => {
2019-04-12 00:16:56 +02:00
let component: HomeComponent;
let fixture: ComponentFixture<HomeComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ HomeComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(HomeComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
2019-04-12 20:20:38 +02:00
it("should create", () => {
2019-04-12 00:16:56 +02:00
expect(component).toBeTruthy();
});
});