/* tslint:disable:no-unused-variable */ import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { RouterTestingModule } from '@angular/router/testing'; import { BackLinkComponent } from './back-link.component'; describe('BackLinkComponent', () => { let component: BackLinkComponent; let fixture: ComponentFixture; beforeEach(async(() => { void TestBed.configureTestingModule({ schemas: [CUSTOM_ELEMENTS_SCHEMA], declarations: [BackLinkComponent], imports: [RouterTestingModule], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(BackLinkComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });