import { ComponentFixture, TestBed } from "@angular/core/testing"; import { GoBack } from "./go-back"; describe("GoBack", () => { let component: GoBack; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [GoBack], }).compileComponents(); fixture = TestBed.createComponent(GoBack); component = fixture.componentInstance; await fixture.whenStable(); }); it("should create", () => { expect(component).toBeTruthy(); }); });