ekart/src/app/shared/components/go-back/go-back.spec.ts
kusowl 6d1cb81e6b wip: checkout page
- add button to go address page in cart ui
- add template for address page
2026-03-13 18:54:48 +05:30

23 lines
528 B
TypeScript

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