cavallium-website/src/app/gui/footer/footer.component.spec.ts

26 lines
628 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 { FooterComponent } from "./footer.component";
2019-04-12 00:16:56 +02:00
2019-04-12 20:20:38 +02:00
describe("FooterComponent", () => {
2019-04-12 00:16:56 +02:00
let component: FooterComponent;
let fixture: ComponentFixture<FooterComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ FooterComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(FooterComponent);
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();
});
});