Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mastro993 committed Jan 22, 2024
1 parent 7f6ab92 commit a067827
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ import { PaymentMethodStatusEnum } from "../../../../../../../definitions/pagopa
import { getGenericError } from "../../../../../../utils/errors";
import { readablePrivacyReport } from "../../../../../../utils/reporters";
import { withRefreshApiCall } from "../../../../../fastLogin/saga/utils";
import {
WalletPaymentCalculateFeesPayload,
walletPaymentCalculateFees
} from "../../../store/actions/networking";
import { walletPaymentCalculateFees } from "../../../store/actions/networking";
import { handleWalletPaymentCalculateFees } from "../handleWalletPaymentCalculateFees";
import { CalculateFeeRequest } from "../../../../../../../definitions/pagopa/ecommerce/CalculateFeeRequest";

describe("Test handleWalletPaymentCalculateFees saga", () => {
const calculateFeesPayload: WalletPaymentCalculateFeesPayload = {
const calculateFeesPayload: CalculateFeeRequest & { walletId: string } = {
walletId: "1234",
paymentAmountInCents: 1234
paymentAmount: 1234
};

it(`should put ${getType(
Expand Down

0 comments on commit a067827

Please sign in to comment.