23 lines
534 B
TypeScript
23 lines
534 B
TypeScript
import { ComponentFixture, TestBed } from "@angular/core/testing";
|
|
|
|
import { Payment } from "./payment";
|
|
|
|
describe("Payment", () => {
|
|
let component: Payment;
|
|
let fixture: ComponentFixture<Payment>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [Payment],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(Payment);
|
|
component = fixture.componentInstance;
|
|
await fixture.whenStable();
|
|
});
|
|
|
|
it("should create", () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|