Files
hyperswitch/cypress-tests/cypress/e2e/PayoutTest/00001-CustomerCreate.cy.js

19 lines
526 B
JavaScript

import customerCreateBody from "../../fixtures/create-customer-body.json";
import State from "../../utils/State";
let globalState;
describe("Customer Create flow test", () => {
before("seed global state", () => {
cy.task("getGlobalState").then((state) => {
globalState = new State(state);
});
});
after("flush global state", () => {
cy.task("setGlobalState", globalState.data);
});
it("customer-create-call-test", () => {
cy.createCustomerCallTest(customerCreateBody, globalState);
});
});