cavallium-website/src/app/gui/router-empty/router-empty.component.spec.ts

26 lines
664 B
TypeScript

import { async, ComponentFixture, TestBed } from "@angular/core/testing";
import { RouterEmptyComponent } from "./router-empty.component";
describe("RouterEmptyComponent", () => {
let component: RouterEmptyComponent;
let fixture: ComponentFixture<RouterEmptyComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ RouterEmptyComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RouterEmptyComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it("should create", () => {
expect(component).toBeTruthy();
});
});